Пример #1
0
        internal void Apply(TestRun testRun, TestRunnerOptions normalized) {
            ActivateDefaultTestSet(testRun);

            Excludes.Apply(testRun, SKIP);
            FocusPatterns.Apply(testRun, FOCUS);

            // If any focused nodes, then only run focused nodes
            if (!normalized.IgnoreFocus && testRun.ContainsFocusedUnits) {
                ApplyFocussing(testRun);
            }

            InheritBiasToChildren(testRun);
            SealRecursive(testRun);
        }