1 package org.testng.junit;
2 
3 /**
4  *
5  * @author lukas
6  */
7 interface JUnitTestRecognizer {
8 
isTest(Class c)9     boolean isTest(Class c);
10 }
11