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.

admin JAVA-JUnit

  1. admin
    March 20th, 2009 at 10:28 | #1

    Make sure you have more or more method annotated with @Test.
    For example:
    @Test
    public void testSomething() {
    }

  1. No trackbacks yet.