View Javadoc

1   /*
2    *  soapUI, copyright (C) 2004-2008 eviware.com 
3    *
4    *  soapUI is free software; you can redistribute it and/or modify it under the 
5    *  terms of version 2.1 of the GNU Lesser General Public License as published by 
6    *  the Free Software Foundation.
7    *
8    *  soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
9    *  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
10   *  See the GNU Lesser General Public License for more details at gnu.org.
11   */
12  
13  package com.eviware.soapui.model.support;
14  
15  import com.eviware.soapui.model.testsuite.LoadTestRunContext;
16  import com.eviware.soapui.model.testsuite.LoadTestRunListener;
17  import com.eviware.soapui.model.testsuite.LoadTestRunner;
18  import com.eviware.soapui.model.testsuite.TestRunContext;
19  import com.eviware.soapui.model.testsuite.TestRunner;
20  import com.eviware.soapui.model.testsuite.TestStep;
21  import com.eviware.soapui.model.testsuite.TestStepResult;
22  
23  /***
24   * Adapter for LoadTestRunListener implementations
25   * 
26   * @author Ole.Matzura
27   */
28  
29  public class LoadTestRunListenerAdapter implements LoadTestRunListener
30  {
31  	public void beforeLoadTest(LoadTestRunner loadTestRunner, LoadTestRunContext context)
32  	{
33  	}
34  
35  	public void beforeTestCase(LoadTestRunner loadTestRunner, LoadTestRunContext context, TestRunner testRunner, TestRunContext runContext)
36  	{
37  	}
38  
39  	public void beforeTestStep(LoadTestRunner loadTestRunner, LoadTestRunContext context,TestRunner testRunner, TestRunContext runContext, TestStep testStep)
40  	{
41  	}
42  
43  	public void afterTestStep(LoadTestRunner loadTestRunner, LoadTestRunContext context,TestRunner testRunner, TestRunContext runContext, TestStepResult testStepResult)
44  	{
45  	}
46  
47  	public void afterTestCase(LoadTestRunner loadTestRunner, LoadTestRunContext context,TestRunner testRunner, TestRunContext runContext)
48  	{
49  	}
50  
51  	public void afterLoadTest(LoadTestRunner loadTestRunner, LoadTestRunContext context)
52  	{
53  	}
54  
55  	public void loadTestStarted(LoadTestRunner loadTestRunner, LoadTestRunContext context)
56  	{
57  	}
58  
59  	public void loadTestStopped(LoadTestRunner loadTestRunner, LoadTestRunContext context)
60  	{
61  	}
62  
63  }