CreateMutantTestTree() public method

public CreateMutantTestTree ( List nodeMethods ) : IEnumerable
nodeMethods List
return IEnumerable
Esempio n. 1
0
        public IEnumerable <TestNodeNamespace> CreateMutantTestTree(Mutant mutant)
        {
            List <TmpTestNodeMethod> nodeMethods = mutant.TestRunContexts
                                                   .SelectMany(c => c.TestResults.ResultMethods).ToList();

            return(_testResultTreeCreator.CreateMutantTestTree(nodeMethods));
        }