.isNotStatic()
.hasArgsCount(0);
// No @Test(timeout=...) and @Timeout at the same time.
Test testAnn = classModel.getAnnotation(method, Test.class, true);
if (testAnn != null && testAnn.timeout() > 0 && classModel.isAnnotationPresent(method, Timeout.class, true)) {
throw new IllegalArgumentException("Conflicting @Test(timeout=...) and @Timeout " +
"annotations in: " + suiteClass.getName() + "#" + method.getName());
}
// @Seed annotation on test methods must have at most 1 seed value.