ArchiMetrics.CodeReview.Rules.Tests.Rules.NodeReviewerTests.GivenANodeInspectorInspectingBrokenSolution.WhenInspectingSolutionThenFindsErrors C# (CSharp) Метод

WhenInspectingSolutionThenFindsErrors() приватный Метод

private WhenInspectingSolutionThenFindsErrors ( string code, Type evaluatorType ) : Task
code string
evaluatorType System.Type
Результат 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