I have inherited a Java project and am new to Java development. I feel a good way for me to get comfortable with the code is to write some tests around it. I\'m writing my c
I was getting this too:
junit.framework.AssertionFailedError: No tests found in ...
Solved by renaming the test method from method1
@Test public void method1(){ // Do some stuff... }
to testMethod1
@Test public void testMethod1(){ // Do some stuff... }