Package org.eclipse.jdt.junit.launcher

Examples of org.eclipse.jdt.junit.launcher.JUnitLaunchShortcut


  private JUnitLaunchShortcut junitLauncher = null;

  public void launchJUnitTest(IJavaElement testElement) {
    if (junitLauncher == null) {
      junitLauncher = new JUnitLaunchShortcut();
    }
    junitLauncher.launch(new StructuredSelection(testElement), "run");
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.junit.launcher.JUnitLaunchShortcut

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.