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