Ejemplo n.º 1
0
        public override IEnumerable <Object> SelectALMTestSets()
        {
            //show Test Lab browser for selecting the Test Set/s
            QCTestLabExplorerPage win = new QCTestLabExplorerPage(QCTestLabExplorerPage.eExplorerTestLabPageUsageType.Select);

            return((ObservableList <QCTestSetTreeItem>)win.ShowAsWindow(eWindowShowStyle.Dialog));
        }
Ejemplo n.º 2
0
        public override string SelectALMTestLabPath()
        {
            //show Test Lab browser for selecting the Test Set/s
            QCTestLabExplorerPage win = new QCTestLabExplorerPage(QCTestLabExplorerPage.eExplorerTestLabPageUsageType.BrowseFolders);

            return((string)win.ShowAsWindow(eWindowShowStyle.Dialog));
        }
Ejemplo n.º 3
0
        public override void ImportALMTests(string importDestinationFolderPath)
        {
            Reporter.ToLog(eAppReporterLogLevel.INFO, "Start importing from QC");
            //set path to import to               
            if (importDestinationFolderPath == "")
                importDestinationFolderPath = App.UserProfile.Solution.BusinessFlowsMainFolder;

            //show Test Lab browser for selecting the Test Set/s to import
            QCTestLabExplorerPage win = new QCTestLabExplorerPage(QCTestLabExplorerPage.eExplorerTestLabPageUsageType.Import, importDestinationFolderPath);
            win.ShowAsWindow(eWindowShowStyle.Dialog);
        }
Ejemplo n.º 4
0
        public override void ImportALMTests(string importDestinationFolderPath)
        {
            Reporter.ToLog(eLogLevel.DEBUG, "Start importing from Octane");
            //set path to import to
            if (importDestinationFolderPath == "")
            {
                importDestinationFolderPath = WorkSpace.Instance.Solution.BusinessFlowsMainFolder;
            }
            //show Test Lab browser for selecting the Test Set/s to import
            QCTestLabExplorerPage win = new QCTestLabExplorerPage(QCTestLabExplorerPage.eExplorerTestLabPageUsageType.Import, importDestinationFolderPath);

            win.ShowAsWindow(eWindowShowStyle.Dialog);
        }
Ejemplo n.º 5
0
        public override string SelectALMTestPlanPath()
        {
            QCTestLabExplorerPage win = new QCTestLabExplorerPage(QCTestLabExplorerPage.eExplorerTestLabPageUsageType.BrowseFolders);

            return((string)win.ShowAsWindow(eWindowShowStyle.Dialog));
        }