This rule is defined by the following XPath expression:
//ClassOrInterfaceBodyDeclaration[MethodDeclaration/MethodDeclarator[starts-with(@Image,'test')]] [count(Annotation//Name[@Image='Test'])=0]
Example:
public class MyTest { public void testBad() { doSomething(); } @Test public void testGood() { doSomething(); } }