ContributionsMost RecentMost LikesSolutionsRe: can I integrate SoapUi with Ruby to run Test suite instead of Junit Can you please let me know is there any feasibility to integrate with Ruby? Re: can I integrate SoapUi with Ruby to run Test suite instead of Junit Our organisation uses Ruby for scripting So we would like to integrate the SoapUI with Ruby same as how its integrated with Junit. I want the Same ruby code exist in Junit here : public void testTestCaseRunner() throws Exception { WsdlProject project = new WsdlProject( "src/dist/sample-soapui-project.xml" ); TestSuite testSuite = project.getTestSuiteByName( "Test Suite" ); TestCase testCase = testSuite.getTestCaseByName( "Test Conversions" ); // create empty properties and run synchronously TestRunner runner = testCase.run( new PropertiesMap(), false ); assertEquals( Status.FINISHED, runner.getStatus() ); } can I integrate SoapUi with Ruby to run Test suite instead of Junit I need to integrate my soupui testsuite with Runy instaed of junit https://www.soapui.org/test-automation/junit/junit-integration.html Is it possible ?