A test automation library based on common other best practice open source libraries. It adds missing functionalities but does not reinvent the wheel. Just glues stuff together nicely and adds some sprinkles.
It's sometimes required to run a single test from the class and ignore all others (kind of reversed @Ignore annotation). Although it's possible to do so using JUnit plugin in Eclipse, it could come in handy to have a special annotation to mark the test, so the test can be exclusively running also when triggered by the console. The annotation would also be useful for methods that are defined in the parent class because in this case, the JUnit plugin in Eclipse doesn't allow to select of a specific method to run, and for this case, it's for now required to set all other tests on @Ignore.
It's sometimes required to run a single test from the class and ignore all others (kind of reversed
@Ignore
annotation). Although it's possible to do so using JUnit plugin in Eclipse, it could come in handy to have a special annotation to mark the test, so the test can be exclusively running also when triggered by the console. The annotation would also be useful for methods that are defined in the parent class because in this case, the JUnit plugin in Eclipse doesn't allow to select of a specific method to run, and for this case, it's for now required to set all other tests on@Ignore
.