Package lcmc.robotest

Examples of lcmc.robotest.Test


                if (lastSelectedInfo instanceof ServiceInfo || lastSelectedInfo instanceof ServicesInfo) {
                    allServicesInfo.getBrowser().getClusterViewPanel().reloadRightComponent();
                }
                guiData.stopProgressIndicator(hn, text);
                LOG.debug("CRMXML: RAs loaded");
                final Test autoTest = application.getAutoTest();
                if (autoTest != null) {
                    startTests.startTest(autoTest, allServicesInfo.getBrowser().getCluster());
                }
            }
        });
View Full Code Here


                    ho.setPort(port);
                }
            } else if (PCMKTEST_OP.equals(op)) {
                final String index = option.getValue();
                if (index != null && !index.isEmpty()) {
                    application.setAutoTest(new Test(StartTests.Type.PCMK, index.charAt(0)));
                }
            } else if (DRBDTEST_OP.equals(op)) {
                final String index = option.getValue();
                if (index != null && !index.isEmpty()) {
                    application.setAutoTest(new Test(StartTests.Type.DRBD, index.charAt(0)));
                }
            } else if (VMTEST_OP.equals(op)) {
                final String index = option.getValue();
                if (index != null && !index.isEmpty()) {
                    application.setAutoTest(new Test(StartTests.Type.VM, index.charAt(0)));
                }
            } else if (GUITEST_OP.equals(op)) {
                final String index = option.getValue();
                if (index != null && !index.isEmpty()) {
                    application.setAutoTest(new Test(StartTests.Type.GUI, index.charAt(0)));
                }
            }
        }
        for (final Map.Entry<String, List<HostOptions>> clusterEntry : clusters.entrySet()) {
            final List<HostOptions> hostOptions = clusterEntry.getValue();
View Full Code Here

TOP

Related Classes of lcmc.robotest.Test

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.