1 54 55 package junitx.runner.engine; 56 57 import junit.framework.Test; 58 import junit.framework.TestResult; 59 60 64 public interface RunContext { 65 66 void addRunListener(RunListener listener); 67 68 void removeRunListener(RunListener listener); 69 70 73 Test getTest(String suiteClassName) throws Exception ; 74 75 TestResult runTest(Test test); 76 77 boolean isRunning(); 78 79 void stop(); 80 81 } 82 | Popular Tags |