ArchiMetrics.CodeReview.Rules.Tests.Rules.NodeReviewerTests.GivenANodeReviewerInspectingNonBrokenCode.NegativeTest C# (CSharp) Method

NegativeTest() private method

private NegativeTest ( string code, Type evaluatorType ) : Task
code string
evaluatorType System.Type
return Task
            public async Task NegativeTest(string code, Type evaluatorType)
            {
                var result = await PerformInspection(code, evaluatorType);

                Assert.Empty(result);
            }
        }
NodeReviewerTests.GivenANodeReviewerInspectingNonBrokenCode