All Downloads are FREE. Search and download functionalities are using the official Maven repository.

resources.report.rules.pmd.JUnit4TestShouldUseTestAnnotation.html Maven / Gradle / Ivy



JUnit4TestShouldUseTestAnnotation

JUnit4TestShouldUseTestAnnotation

In JUnit 3, the framework executed all methods which started with the word test as a unit test. In JUnit 4, only methods annotated with the @Test annotation are executed.


//ClassOrInterfaceBodyDeclaration[MethodDeclaration[@Public='true']/MethodDeclarator[starts-with(@Image,'test')]]
[count(Annotation//Name[@Image='Test'])=0]

Example(s):


public class MyTest {
    public void testBad() {
        doSomething();
    }

	@Test
    public void testGood() {
        doSomething();
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy