コード例 #1
0
        public override string SelectALMTestLabPath()
        {
            //show Test Lab browser for selecting the Test Set/s
            ZephyrEntPlanningExplorerPage win = new ZephyrEntPlanningExplorerPage(ZephyrEntPlanningExplorerPage.eExplorerTestPlanningPageUsageType.BrowseFolders);

            return((string)win.ShowAsWindow(eWindowShowStyle.Dialog));
        }
コード例 #2
0
        public override void ImportALMTests(string importDestinationFolderPath)
        {
            Reporter.ToLog(eLogLevel.DEBUG, "Start importing from Zephyr");
            //set path to import to
            if (importDestinationFolderPath == "")
            {
                importDestinationFolderPath = WorkSpace.Instance.Solution.BusinessFlowsMainFolder;
            }
            //show Test Lab browser for selecting the Test Set/s to import
            ZephyrEntPlanningExplorerPage win = new ZephyrEntPlanningExplorerPage(eExplorerTestPlanningPageUsageType.Import, importDestinationFolderPath);

            win.ShowAsWindow(eWindowShowStyle.Dialog);
        }