Uses of Class
com.eviware.soapui.impl.wsdl.testcase.WsdlTestCase

Packages that use WsdlTestCase
com.eviware.soapui.impl.wsdl WSDL 1.1 implementations of soapui model interface 
com.eviware.soapui.impl.wsdl.actions.iface.tools.soapui   
com.eviware.soapui.impl.wsdl.actions.request WsdlRequest related actions 
com.eviware.soapui.impl.wsdl.actions.support General actions and supporting classes 
com.eviware.soapui.impl.wsdl.actions.testcase WsdlTestCase related actions 
com.eviware.soapui.impl.wsdl.loadtest LoadTest-related classes 
com.eviware.soapui.impl.wsdl.panels.support Support classes for panels 
com.eviware.soapui.impl.wsdl.panels.testcase WsdlTestCase panel classes 
com.eviware.soapui.impl.wsdl.panels.testcase.actions WsdlTestCaseDesktopPanel Actions 
com.eviware.soapui.impl.wsdl.panels.testsuite WsdlTestSuite panel classes 
com.eviware.soapui.impl.wsdl.testcase WSDL implementations of TestCase-related interfaces 
com.eviware.soapui.impl.wsdl.teststeps WsdlTestStep implementations 
com.eviware.soapui.impl.wsdl.teststeps.registry TestStep registry and factories 
com.eviware.soapui.model.support SoapUI model-related support classes 
com.eviware.soapui.model.tree.nodes.support TreeNode utilities 
com.eviware.soapui.support.components Usefull swing components 
 

Uses of WsdlTestCase in com.eviware.soapui.impl.wsdl
 

Methods in com.eviware.soapui.impl.wsdl that return WsdlTestCase
 WsdlTestCase WsdlTestSuite.addNewTestCase(java.lang.String name)
           
 WsdlTestCase WsdlTestSuite.cloneTestCase(WsdlTestCase testCase, java.lang.String name)
           
 WsdlTestCase WsdlTestSuite.getTestCaseAt(int index)
           
 WsdlTestCase WsdlTestSuite.getTestCaseByName(java.lang.String testCaseName)
           
 WsdlTestCase WsdlTestSuite.importTestCase(WsdlTestCase testCase, java.lang.String name, int index, boolean includeLoadTests)
           
 WsdlTestCase WsdlTestSuite.moveTestCase(int ix, int offset)
          Moves a testcase by the specified offset, a bit awkward since xmlbeans doesn't support reordering of arrays, we need to create copies of the contained XmlObjects
 

Methods in com.eviware.soapui.impl.wsdl with parameters of type WsdlTestCase
 WsdlTestCase WsdlTestSuite.cloneTestCase(WsdlTestCase testCase, java.lang.String name)
           
 void WsdlTestSuite.fireTestCaseAdded(WsdlTestCase testCase)
           
 void WsdlTestSuite.fireTestCaseRemoved(WsdlTestCase testCase)
           
 WsdlTestCase WsdlTestSuite.importTestCase(WsdlTestCase testCase, java.lang.String name, int index, boolean includeLoadTests)
           
 void WsdlTestSuite.removeTestCase(WsdlTestCase testCase)
           
 

Uses of WsdlTestCase in com.eviware.soapui.impl.wsdl.actions.iface.tools.soapui
 

Methods in com.eviware.soapui.impl.wsdl.actions.iface.tools.soapui with parameters of type WsdlTestCase
 void TestCaseTestRunnerAction.perform(WsdlTestCase target, java.lang.Object param)
           
 

Uses of WsdlTestCase in com.eviware.soapui.impl.wsdl.actions.request
 

Methods in com.eviware.soapui.impl.wsdl.actions.request with parameters of type WsdlTestCase
 WsdlTestRequestStep AddRequestToTestCaseAction.addRequest(WsdlTestCase testCase, WsdlRequest request, int position)
           
 

Uses of WsdlTestCase in com.eviware.soapui.impl.wsdl.actions.support
 

Methods in com.eviware.soapui.impl.wsdl.actions.support that return WsdlTestCase
protected  WsdlTestCase AbstractAddToTestCaseAction.addNewTestSuiteAndTestCase(WsdlProject project)
           
protected  WsdlTestCase AbstractAddToTestCaseAction.getTargetTestCase(WsdlProject project)
           
 

Uses of WsdlTestCase in com.eviware.soapui.impl.wsdl.actions.testcase
 

Methods in com.eviware.soapui.impl.wsdl.actions.testcase that return types with arguments of type WsdlTestCase
 SoapUIActionMappingList<WsdlTestCase> WsdlTestCaseAddStepSoapUIActionGroup.getActionMappings(WsdlTestCase modelItem)
           
 

Methods in com.eviware.soapui.impl.wsdl.actions.testcase with parameters of type WsdlTestCase
 SoapUIActionMappingList<WsdlTestCase> WsdlTestCaseAddStepSoapUIActionGroup.getActionMappings(WsdlTestCase modelItem)
           
 void TestCaseOptionsAction.perform(WsdlTestCase testCase, java.lang.Object param)
           
 void RenameTestCaseAction.perform(WsdlTestCase testCase, java.lang.Object param)
           
 void MoveTestCaseUpAction.perform(WsdlTestCase testCase, java.lang.Object param)
           
 void MoveTestCaseDownAction.perform(WsdlTestCase testCase, java.lang.Object param)
           
 void DeleteTestCaseAction.perform(WsdlTestCase testCase, java.lang.Object param)
           
 void CloneTestCaseAction.perform(WsdlTestCase testCase, java.lang.Object param)
           
 void ClearTestCaseAction.perform(WsdlTestCase testCase, java.lang.Object param)
           
 void AddWsdlTestStepAction.perform(WsdlTestCase testCase, java.lang.Object param)
           
 void AddNewLoadTestAction.perform(WsdlTestCase testCase, java.lang.Object param)
           
 

Uses of WsdlTestCase in com.eviware.soapui.impl.wsdl.loadtest
 

Methods in com.eviware.soapui.impl.wsdl.loadtest that return WsdlTestCase
 WsdlTestCase WsdlLoadTestRunner.TestCaseRunner.getTestCase()
           
 WsdlTestCase WsdlLoadTest.getTestCase()
           
 

Methods in com.eviware.soapui.impl.wsdl.loadtest with parameters of type WsdlTestCase
 void WsdlLoadTestRunner.finishTestCase(java.lang.String reason, WsdlTestCase testCase)
           
 

Constructors in com.eviware.soapui.impl.wsdl.loadtest with parameters of type WsdlTestCase
WsdlLoadTest(WsdlTestCase testCase, com.eviware.soapui.config.LoadTestConfig config)
           
WsdlLoadTestRunner.TestCaseRunner(WsdlTestCase testCase, int threadIndex)
           
 

Uses of WsdlTestCase in com.eviware.soapui.impl.wsdl.panels.support
 

Constructors in com.eviware.soapui.impl.wsdl.panels.support with parameters of type WsdlTestCase
MockTestRunner(WsdlTestCase testCase)
           
MockTestRunner(WsdlTestCase testCase, org.apache.log4j.Logger logger)
           
ProgressBarTestCaseAdapter(javax.swing.JProgressBar progressBar, WsdlTestCase testCase)
           
 

Uses of WsdlTestCase in com.eviware.soapui.impl.wsdl.panels.testcase
 

Methods in com.eviware.soapui.impl.wsdl.panels.testcase with parameters of type WsdlTestCase
 DesktopPanel WsdlTestCasePanelBuilder.buildDesktopPanel(WsdlTestCase testCase)
           
 java.awt.Component WsdlTestCasePanelBuilder.buildOverviewPanel(WsdlTestCase modelItem)
           
 

Constructors in com.eviware.soapui.impl.wsdl.panels.testcase with parameters of type WsdlTestCase
TestStepList(WsdlTestCase testCase)
           
WsdlTestCaseDesktopPanel(WsdlTestCase testCase)
           
 

Uses of WsdlTestCase in com.eviware.soapui.impl.wsdl.panels.testcase.actions
 

Constructors in com.eviware.soapui.impl.wsdl.panels.testcase.actions with parameters of type WsdlTestCase
SetCredentialsAction(WsdlTestCase testCase)
           
SetEndpointAction(WsdlTestCase testCase)
           
 

Uses of WsdlTestCase in com.eviware.soapui.impl.wsdl.panels.testsuite
 

Constructors in com.eviware.soapui.impl.wsdl.panels.testsuite with parameters of type WsdlTestCase
JTestCaseList.TestCaseListPanel(WsdlTestCase testCase)
           
 

Uses of WsdlTestCase in com.eviware.soapui.impl.wsdl.testcase
 

Constructors in com.eviware.soapui.impl.wsdl.testcase with parameters of type WsdlTestCase
WsdlTestCaseRunner(WsdlTestCase testCase, PropertiesMap properties)
           
 

Uses of WsdlTestCase in com.eviware.soapui.impl.wsdl.teststeps
 

Methods in com.eviware.soapui.impl.wsdl.teststeps that return WsdlTestCase
 WsdlTestCase WsdlTestStep.getTestCase()
           
 WsdlTestCase WsdlTestRequest.getTestCase()
           
 

Methods in com.eviware.soapui.impl.wsdl.teststeps with parameters of type WsdlTestCase
 WsdlTestStep WsdlTestStep.clone(WsdlTestCase targetTestCase, java.lang.String name)
          Called after cloning for custom behaviour
 WsdlTestStep WsdlTestRequestStep.clone(WsdlTestCase targetTestCase, java.lang.String name)
           
 

Constructors in com.eviware.soapui.impl.wsdl.teststeps with parameters of type WsdlTestCase
TransferResponseValuesTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config, boolean forLoadTest)
           
WsdlDelayTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config, boolean forLoadTest)
           
WsdlGotoTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config, boolean forLoadTest)
           
WsdlGroovyScriptTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config, boolean forLoadTest)
           
WsdlPropertiesTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config, boolean forLoadTest)
           
WsdlTestRequestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config, boolean forLoadTest)
           
WsdlTestRequestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig testStep, WsdlRequest request)
           
WsdlTestRequestStep(WsdlTestCase testCase, WsdlTestRequest sourceRequest)
           
WsdlTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config, boolean hasEditor, boolean forLoadTest)
           
 

Uses of WsdlTestCase in com.eviware.soapui.impl.wsdl.teststeps.registry
 

Methods in com.eviware.soapui.impl.wsdl.teststeps.registry with parameters of type WsdlTestCase
abstract  WsdlTestStep WsdlTestStepFactory.buildTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config, boolean forLoadTest)
           
 WsdlTestStep WsdlTestRequestStepFactory.buildTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config, boolean forLoadTest)
           
 WsdlTestStep TransferValuesStepFactory.buildTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config, boolean forLoadTest)
           
 WsdlTestStep PropertiesStepFactory.buildTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config, boolean forLoadTest)
           
 WsdlTestStep GroovyScriptStepFactory.buildTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config, boolean forLoadTest)
           
 WsdlTestStep GotoStepFactory.buildTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config, boolean forLoadTest)
           
 WsdlTestStep DelayStepFactory.buildTestStep(WsdlTestCase testCase, com.eviware.soapui.config.TestStepConfig config, boolean forLoadTest)
           
abstract  com.eviware.soapui.config.TestStepConfig WsdlTestStepFactory.createNewTestStep(WsdlTestCase testCase, java.lang.String name)
           
 com.eviware.soapui.config.TestStepConfig WsdlTestRequestStepFactory.createNewTestStep(WsdlTestCase testCase, java.lang.String name)
           
 com.eviware.soapui.config.TestStepConfig TransferValuesStepFactory.createNewTestStep(WsdlTestCase testCase, java.lang.String name)
           
 com.eviware.soapui.config.TestStepConfig PropertiesStepFactory.createNewTestStep(WsdlTestCase testCase, java.lang.String name)
           
 com.eviware.soapui.config.TestStepConfig GroovyScriptStepFactory.createNewTestStep(WsdlTestCase testCase, java.lang.String name)
           
 com.eviware.soapui.config.TestStepConfig GotoStepFactory.createNewTestStep(WsdlTestCase testCase, java.lang.String name)
           
 com.eviware.soapui.config.TestStepConfig DelayStepFactory.createNewTestStep(WsdlTestCase testCase, java.lang.String name)
           
 

Uses of WsdlTestCase in com.eviware.soapui.model.support
 

Methods in com.eviware.soapui.model.support with parameters of type WsdlTestCase
 java.lang.Object AbstractSubmitContext.getProperty(java.lang.String name, TestStep testStep, WsdlTestCase testCase)
           
 

Uses of WsdlTestCase in com.eviware.soapui.model.tree.nodes.support
 

Methods in com.eviware.soapui.model.tree.nodes.support that return WsdlTestCase
 WsdlTestCase WsdlTestStepsModelItem.getTestCase()
           
 

Uses of WsdlTestCase in com.eviware.soapui.support.components
 

Constructors in com.eviware.soapui.support.components with parameters of type WsdlTestCase
TestStepComboBoxModel(WsdlTestCase testCase)
           
 



Copyright © 2005-2007 eviware.com. All Rights Reserved.