View Javadoc

1   /*
2    *  soapUI, copyright (C) 2004-2010 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.TestCaseRunContext;
19  import com.eviware.soapui.model.testsuite.TestCaseRunner;
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, TestCaseRunner testRunner,
36  			TestCaseRunContext runContext )
37  	{
38  	}
39  
40  	public void beforeTestStep( LoadTestRunner loadTestRunner, LoadTestRunContext context, TestCaseRunner testRunner,
41  			TestCaseRunContext runContext, TestStep testStep )
42  	{
43  	}
44  
45  	public void afterTestStep( LoadTestRunner loadTestRunner, LoadTestRunContext context, TestCaseRunner testRunner,
46  			TestCaseRunContext runContext, TestStepResult testStepResult )
47  	{
48  	}
49  
50  	public void afterTestCase( LoadTestRunner loadTestRunner, LoadTestRunContext context, TestCaseRunner testRunner,
51  			TestCaseRunContext runContext )
52  	{
53  	}
54  
55  	public void afterLoadTest( LoadTestRunner loadTestRunner, LoadTestRunContext context )
56  	{
57  	}
58  
59  	public void loadTestStarted( LoadTestRunner loadTestRunner, LoadTestRunContext context )
60  	{
61  	}
62  
63  	public void loadTestStopped( LoadTestRunner loadTestRunner, LoadTestRunContext context )
64  	{
65  	}
66  
67  }