ArchiMetrics.CodeReview.Rules.Tests.Rules.NodeReviewerTests.GivenANodeReviewerInspectingNonBrokenCode.NegativeTest C# (CSharp) 메소드

NegativeTest() 개인적인 메소드

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

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