soapuiuser2013
13 years agoNew Contributor
Thread Hanging
Hi
I am trying to execute test suites through a Java app rather than on the UI. However, when creating a WSDLProject a thread is starting that never gets killed, so the app never ends.
It looks like an AWT Daemon Thread
Here is my code:
Does anyone know why this is? Or if I even should be doing it this way?
The lack of even basic documentation like javadoc is making this incredibly hard work. Is there any documentation for interacting with the SOAPUI API like this or is it just guess work?
I am trying to execute test suites through a Java app rather than on the UI. However, when creating a WSDLProject a thread is starting that never gets killed, so the app never ends.
It looks like an AWT Daemon Thread
Here is my code:
projectName = String.format("src/main/resources/%s-soapui-project.xml", projectName);
WsdlProject project = new WsdlProject(projectName);
List<TestSuite> testSuites = project.getTestSuiteList();
Does anyone know why this is? Or if I even should be doing it this way?
The lack of even basic documentation like javadoc is making this incredibly hard work. Is there any documentation for interacting with the SOAPUI API like this or is it just guess work?