01: package salomeTMF_plug.simpleJunit;
02:
03: import java.util.Hashtable;
04:
05: import org.objectweb.salome_tmf.data.Attachment;
06: import org.objectweb.salome_tmf.data.TestList;
07:
08: interface IJunitAnalyser {
09:
10: void createJunitTest(Attachment pSelectedattach, String strClass,
11: TestList pSuite, String toWrite);
12:
13: void createBeanShellJunitTest(Attachment pSelectedattach,
14: String strClass, TestList pSuite);
15:
16: public int runTest(String strID, String strAttachment,
17: String strClass, String meth, String testScript,
18: org.objectweb.salome_tmf.data.AutomaticTest pTest,
19: Hashtable argTest, String plugArg) throws Exception;
20:
21: public String getTestLog();
22:
23: public void stopTest() throws Exception;
24:
25: }
|