コード例 #1
0
ファイル: TestCaseFile.cs プロジェクト: vpalodic/Holodeck
        private bool startTest()
        {
            //starts to run the test

            //start holodeck
            mainForm.infoTextBox.AppendText(mainForm.thisTime.getTime() + "Running Test Case [" + testNo + "] from file [" + fileName + "]\n");                                                                     holodeckEE = new HolodeckInterface();

            //load the pane settings
            holodeckEE.LoadPaneSettings("paneSettings.txt");

            //start holodeck
            holodeckEE.startHolodeck();

            //open the project we have created
            holodeckEE.openProject(mainForm.path);

            //run the test
            runTest();

            //stop the test
            stopTest();
            return(true);
        }
コード例 #2
0
ファイル: TestCaseFile.cs プロジェクト: uvbs/Holodeck
        private bool startTest()
        {
            //starts to run the test

            //start holodeck
            mainForm.infoTextBox.AppendText(mainForm.thisTime.getTime() + "Running Test Case [" + testNo + "] from file [" + fileName + "]\n");									holodeckEE = new HolodeckInterface();

            //load the pane settings
            holodeckEE.LoadPaneSettings("paneSettings.txt");

            //start holodeck
            holodeckEE.startHolodeck();

            //open the project we have created
            holodeckEE.openProject(mainForm.path);

            //run the test
            runTest();

            //stop the test
            stopTest();
            return true;
        }