AssertionFailedError: No tests found in xxx
March 20th, 2009
Applies to:
NA
Description:
Occurs when running tests
Cause:
You have no methods for test in Your class.
Applies to:
NA
Description:
Occurs when running tests
Cause:
You have no methods for test in Your class.
Make sure you have more or more method annotated with @Test.
For example:
@Test
public void testSomething() {
}