コード例 #1
0
ファイル: RunContext.cs プロジェクト: xunit/resharper-xunit
        private static bool IsTheory(ITestCase testCase)
        {
            // DisplayName will be null for v1 tests
            var displayName = testCase.DisplayName;

            return(displayName != null && displayName != testCase.FullyQualifiedName());
        }
コード例 #2
0
 private static bool IsTheory(ITestCase testCase)
 {
     var displayName = testCase.DisplayName;
     var fullyQualifiedName = testCase.FullyQualifiedName();
     return displayName != fullyQualifiedName;
 }