예제 #1
0
        public (IEnumerable <Error> Errors, IEnumerable <TestCase> Tests) NormalizeTests(Arr <TestCase> tests)
        {
            var normalized = tests
                             .Collect(t => ExpandFileGlobs(fileSystem, t))
                             .Select(GenerateAutoLabelPresenceSegmentTest)
                             .Select(GenerateNoExtraResultsExpectation);

            return(normalized.Partition());
        }