Package com.eviware.soapui.impl.wsdl.loadtest

Examples of com.eviware.soapui.impl.wsdl.loadtest.LoadTestAssertion


      return null;
    }

    public Object getValueAt( int rowIndex, int columnIndex )
    {
      LoadTestAssertion assertion = loadTest.getAssertionAt( rowIndex );

      switch( columnIndex )
      {
      case 0 :
        return assertion.getIcon();
      case 1 :
        return assertion.getName();
      case 2 :
        return assertion.getTargetStep();
      case 3 :
        return assertion.getDescription();
      }

      return null;
    }
View Full Code Here


      int ix = table.getSelectedRow();
      if( ix == -1 )
        return;
      ix = table.convertRowIndexToModel( ix );

      LoadTestAssertion assertion = loadTest.getAssertionAt( ix );
      if( UISupport.confirm( "Remove assertion [" + assertion.getName() + "]", "Remove Assertion" ) )
      {
        loadTest.removeAssertion( assertion );
      }
    }
View Full Code Here

            return null;
        }

        public Object getValueAt(int rowIndex, int columnIndex) {
            LoadTestAssertion assertion = loadTest.getAssertionAt(rowIndex);

            switch (columnIndex) {
                case 0:
                    return assertion.getIcon();
                case 1:
                    return assertion.getName();
                case 2:
                    return assertion.getTargetStep();
                case 3:
                    return assertion.getDescription();
            }

            return null;
        }
View Full Code Here

            if (ix == -1) {
                return;
            }
            ix = table.convertRowIndexToModel(ix);

            LoadTestAssertion assertion = loadTest.getAssertionAt(ix);
            if (UISupport.confirm("Remove assertion [" + assertion.getName() + "]", "Remove Assertion")) {
                loadTest.removeAssertion(assertion);
            }
        }
View Full Code Here

TOP

Related Classes of com.eviware.soapui.impl.wsdl.loadtest.LoadTestAssertion

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.