private static bool IsTheory(ITestCase testCase) { // DisplayName will be null for v1 tests var displayName = testCase.DisplayName; return(displayName != null && displayName != testCase.FullyQualifiedName()); }
private static bool IsTheory(ITestCase testCase) { var displayName = testCase.DisplayName; var fullyQualifiedName = testCase.FullyQualifiedName(); return displayName != fullyQualifiedName; }