Here are the steps I am doing: 1) Loading through API an existing SoapUI project 2) Defining a new INTERFACE through API 3) Run a test case from the project we invoked in step 1 using the new added INTERFACE from step 2 (and by this Overriding the INTERFACE which was assigned to this test case in the original SoapUI project).
Hi, yes. I created an interface through the API code and now when adding new test case through the API I want this test case to use the added interface. How can I do so? Thanks
I managed to add new interface to an existing project. I want to assign this added interface to new tests which I add through a JAVA code (SOAP UI API).
Hi, I Need to run specific Test Step through JUNIT and I only saw a way to run a whole Test Case (which obviously has multiple test steps).
This is my code: assertNotNull("Please set the SoapUI project file", soapUIProject); WsdlProject project = new WsdlProject(soapUIProject.getAbsolutePath()); printProjectTestInfo(project); TestSuite testSuite = project.getTestSuiteByName(suiteName);