How is this still a problem with no real solution???
Background:
My project is now starting to get to big and is getting difficult to maintain. I’d like to start writing simple unit tests to catch mistakes I make while coding (I should have been writing them all along).
So I started using IMPLEMENT_SIMPLE_AUTOMATION_TEST
The Problem:
I can get the tests to appear on the SessionFrontEnd and even executed properly, but any changes made to the test require a full editor restart after compiling each time. Simply changing an AssertTrue(“MyTest”, true) to AssertTrue(“MyTest”, false) requires a restart of the editor.
Do I need to be able to make my tests perfect the first time to minimize the amount of times restarting the editor? Is that the intent? This doesn’t make sense and makes writing tests not even worth the time.
Hopefully I’m way off here and a solution exists, but I have no idea how to get around it. Does anyone have any suggestions?