Пример #1
0
        private static int Run(RunOptions options)
        {
            BaseliningTester  tester         = new BaseliningTester();
            BaseliningSummary overallSummary = tester.RunAll(options.TestRootPath);

            return(0);
        }
Пример #2
0
        private static int CreateDebugLogs(RebuildDebugLogsOptions options)
        {
            BaseliningTester tester = new BaseliningTester();

            tester.EnrichUnder(Path.Combine(options.TestRootPath, BaseliningTester.InputFolderName));

            return(0);
        }
Пример #3
0
        private static int Debug(DebugOptions options)
        {
            BaseliningTester tester = new BaseliningTester();

            tester.RunSeries(Path.Combine(options.TestRootPath, BaseliningTester.InputFolderName, options.DebugSeriesPath), options.DebugSeriesPath, options.DebugLogIndex, options.DebugResultIndex);

            return(0);
        }