I am trying to run a java program as an executable from my Parasoft Test suite. The executable just executes once the test is run and store results in one folder.. But Now, as part of enhancement , I need to pass a argument to Java code and java code needs that argument to generate results in specific folders. Is anyone aware how java code needs to be integrated with SOA Test and how an argument can be passed from SOA test and how that argument should be dealt in java code?
Would appreciate any help on this.. Thanks
You need to implement com.parasoft.api in you java code in order get the argument you need; More detail can be found in the help section search for: "Extensibility (Scripting) Basics"
Define a test suite variable, store your value in it, then call:
varValue = context.getValue("x")
Here is a Java example that gets a value from a datasource.