Package org.testng.eclipse.launch.TestNGLaunchConfigurationConstants

Examples of org.testng.eclipse.launch.TestNGLaunchConfigurationConstants.LaunchType


  /**
   * @return List<LaunchSuite>
   */
  public static List<LaunchSuite> getLaunchSuites(IJavaProject ijp,
      ILaunchConfiguration configuration) {
    LaunchType type = ConfigurationHelper.getType(configuration);
   
    List<String> packages= null;
    List<String> testClasses = null;
    List<String> groups = null;
    Map<String, List<String>> classMethods= null;
View Full Code Here


    }

    int logLevel = ConfigurationHelper.getLogLevel(configuration);
    m_logLevelCombo.select(logLevel);

    LaunchType type = ConfigurationHelper.getType(configuration);
    setType(type);
    m_classMethods = ConfigurationHelper.getClassMethods(configuration);

    attachModificationListeners();
  }
View Full Code Here

      return allClasspath;
    }
  }

  private String getRunNameAttr(ILaunchConfiguration configuration) {
    LaunchType runType = ConfigurationHelper.getType(configuration);

    switch (runType) {
    case SUITE:
      return "suite";
    case GROUP:
View Full Code Here

TOP

Related Classes of org.testng.eclipse.launch.TestNGLaunchConfigurationConstants.LaunchType

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.