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.impl.wsdl.panels.support;
14  
15  import com.eviware.soapui.impl.wsdl.loadtest.WsdlLoadTest;
16  import com.eviware.soapui.model.support.AbstractSubmitContext;
17  import com.eviware.soapui.model.testsuite.LoadTestRunContext;
18  import com.eviware.soapui.model.testsuite.LoadTestRunner;
19  import com.eviware.soapui.model.testsuite.TestCaseRunner;
20  
21  public class MockLoadTestRunContext extends AbstractSubmitContext<WsdlLoadTest> implements LoadTestRunContext
22  {
23  	private final MockLoadTestRunner mockTestRunner;
24  
25  	public MockLoadTestRunContext( MockLoadTestRunner mockTestRunner )
26  	{
27  		super( mockTestRunner.getLoadTest() );
28  		this.mockTestRunner = mockTestRunner;
29  	}
30  
31  	public LoadTestRunner getLoadTestRunner()
32  	{
33  		return mockTestRunner;
34  	}
35  
36  	public Object getProperty( String name )
37  	{
38  		if( "loadTestRunner".equals( name ) )
39  			return getLoadTestRunner();
40  
41  		return get( name );
42  	}
43  
44  	public Object getProperty( String testStep, String propertyName )
45  	{
46  		// TODO Auto-generated method stub
47  		return null;
48  	}
49  
50  	public TestCaseRunner getTestRunner()
51  	{
52  		// TODO Auto-generated method stub
53  		return null;
54  	}
55  }