In a bundle that holds integration tests, I would like all classes whose names end with Test
to be considered as tests and be executed when launching OSGi Framework JUnit Tests.
The Test-Classes
directive in the bnd.bnd
file seems to be the right place to specify this. However, the documentation for the classes
macro at http://bnd.bndtools.org/macros/classes.html is sparse.
Therefore, my question is how to form the directive to include all classes ending with Test
along the lines of
Test-Cases: ${classes that end with Test}