Package org.testng.eclipse.ui

Examples of org.testng.eclipse.ui.OpenTestAction


      private void handleDoubleClick(MouseEvent e) {
        TableItem[] items = ((Table) e.getSource()).getSelection();
        if (items.length > 0) {
          ExcludedMethod em = (ExcludedMethod) items[0].getData();
          System.out.println("Double click " + em.packageName + "." + em.methodName);
          OpenTestAction openAction
              = new OpenTestAction(m_testRunnerPart, em.packageName, em.methodName,
                    true /* activate */);
          openAction.run();
        }
      }
    });

    //
View Full Code Here

TOP

Related Classes of org.testng.eclipse.ui.OpenTestAction

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.