Package com.qspin.qtaste.ui.tools

Examples of com.qspin.qtaste.ui.tools.TestSuiteRunDialog


        }

        public void actionPerformed(ActionEvent e) {
            if (mLoop) {
                // show RunDialog
                TestSuiteRunDialog runDlg = new TestSuiteRunDialog(
                        new javax.swing.JFrame(), "Run options");
                runDlg.setAlwaysOnTop(true);
                runDlg.setVisible(true);
                if (!runDlg.IsCancelled) {
                    getTestCasePane().runTestSuite(false, runDlg.getNumberOfLoops(), runDlg.isLoopsInHours());
                }
            } else {
                getTestCasePane().runTestSuite(false);
            }
        }
View Full Code Here

TOP

Related Classes of com.qspin.qtaste.ui.tools.TestSuiteRunDialog

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.