Package com.eviware.soapui.impl.wsdl.actions.testsuite

Source Code of com.eviware.soapui.impl.wsdl.actions.testsuite.AddNewTestCaseAction

/*
*  soapUI, copyright (C) 2004-2011 eviware.com
*
*  soapUI is free software; you can redistribute it and/or modify it under the
*  terms of version 2.1 of the GNU Lesser General Public License as published by
*  the Free Software Foundation.
*
*  soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
*  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*  See the GNU Lesser General Public License for more details at gnu.org.
*/

package com.eviware.soapui.impl.wsdl.actions.testsuite;

import com.eviware.soapui.impl.wsdl.WsdlTestSuite;
import com.eviware.soapui.impl.wsdl.testcase.WsdlTestCase;
import com.eviware.soapui.support.StringUtils;
import com.eviware.soapui.support.UISupport;
import com.eviware.soapui.support.action.support.AbstractSoapUIAction;

/**
* Adds a new WsdlTestCase to a WsdlTestSuite
*
* @author Ole.Matzura
*/

public class AddNewTestCaseAction extends AbstractSoapUIAction<WsdlTestSuite>
{
  public static final String SOAPUI_ACTION_ID = "AddNewTestCaseAction";

  public AddNewTestCaseAction()
  {
    super( "New TestCase", "Creates a new TestCase in this TestSuite" );
    // putValue( Action.ACCELERATOR_KEY, UISupport.getKeyStroke( "menu N" ));
  }

  public void perform( WsdlTestSuite testSuite, Object param )
  {
    String name = UISupport.prompt( "Specify name of TestCase", "New TestCase",
        "TestCase " + ( testSuite.getTestCaseCount() + 1 ) );
    if( name == null )
      return;
    while( testSuite.getTestCaseByName( name.trim() ) != null )
    {
      name = UISupport.prompt( "Specify unique name of TestCase", "Rename TestCase", name );
      if( StringUtils.isNullOrEmpty( name ) )
        return;
    }

    WsdlTestCase testCase = testSuite.addNewTestCase( name );
    UISupport.showDesktopPanel( testCase );
  }
}
TOP

Related Classes of com.eviware.soapui.impl.wsdl.actions.testsuite.AddNewTestCaseAction

TOP
Copyright © 2018 www.massapi.com. 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.