View Javadoc

1   package com.eviware.soapui.impl.wsdl.testcase;
2   
3   import com.eviware.soapui.model.testsuite.TestCase;
4   import com.eviware.soapui.model.testsuite.TestRunner;
5   
6   public interface TestScenarioListener
7   {
8   	void afterTestCase( TestCase testCase, TestRunner runner );
9   
10  	void beforeTestCase( TestCase testCase );
11  
12  	void beforeRun();
13  
14  	void afterRun();
15  }