Forum Discussion

3 Replies

  • nmrao's avatar
    nmrao
    Champion Level 3
    Interesting. Can you please elaborate your use case?
    • avanthi's avatar
      avanthi
      New Contributor

      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() ); 
      }
  • avanthi's avatar
    avanthi
    New Contributor

    Can you please let me know is there any feasibility to integrate with Ruby?