ArchiMetrics.CodeReview.Rules.Tests.Rules.NodeReviewerTests.GivenANodeInspectorInspectingBrokenSolution.WhenInspectingSolutionThenFindsErrors C# (CSharp) Méthode

WhenInspectingSolutionThenFindsErrors() private méthode

private WhenInspectingSolutionThenFindsErrors ( string code, Type evaluatorType ) : Task
code string
evaluatorType System.Type
Résultat Task
            public async Task WhenInspectingSolutionThenFindsErrors(string code, Type evaluatorType)
            {
                Console.WriteLine(evaluatorType.Name);

                var task = await PerformSolutionInspection(code, evaluatorType);
                var count = task.Count();

                Assert.Equal(1, count);
            }
        }
NodeReviewerTests.GivenANodeInspectorInspectingBrokenSolution