@return an array of all the test classes in the classpath
()
| 212 | * @return an array of all the test classes in the classpath |
| 213 | */ |
| 214 | public static Class<?>[] getClasses() { |
| 215 | final List<Class<?>> testClasses = new ClassPathSuite().getTestClasses(); |
| 216 | return testClasses.toArray(new Class<?>[0]); |
| 217 | } |
| 218 | |
| 219 | } |
no test coverage detected