You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The support assertJ-swing is great. When trying to use the library to automate some application level tests like running the application and run tests against it, I found the few problems.
When we run lot of tests, the objects that are created for assertions and component lookup adds an overhead into the Application Under Testing.
Running tests together with the application adds test framework overhead into the Application as well.
We could overcome these problems, if we keep test execution and assertions on the testing jvm and application on its own jvm. To do that we would need a small agent which could perform low level operations that are required by the assertion library and return the results to the testing jvm. This will make sure the testing and assertion has minimal impact on the application jvm.
Do you think this is a good idea to implement ? or the scope of this library is just to test components only ?
The text was updated successfully, but these errors were encountered:
The support assertJ-swing is great. When trying to use the library to automate some application level tests like running the application and run tests against it, I found the few problems.
We could overcome these problems, if we keep test execution and assertions on the testing jvm and application on its own jvm. To do that we would need a small agent which could perform low level operations that are required by the assertion library and return the results to the testing jvm. This will make sure the testing and assertion has minimal impact on the application jvm.
Do you think this is a good idea to implement ? or the scope of this library is just to test components only ?
The text was updated successfully, but these errors were encountered: