From ac4fba889eceedfcc6485795f4af053a5b14bfd9 Mon Sep 17 00:00:00 2001 From: John Luo Date: Mon, 9 Apr 2018 10:35:16 -0700 Subject: [PATCH] Make SkippedTestCase and related utilities public --- src/Microsoft.AspNetCore.Testing/xunit/SkippedTestCase.cs | 2 +- src/Microsoft.AspNetCore.Testing/xunit/TestMethodExtensions.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Testing/xunit/SkippedTestCase.cs b/src/Microsoft.AspNetCore.Testing/xunit/SkippedTestCase.cs index 2aeebe2..c2e15fa 100644 --- a/src/Microsoft.AspNetCore.Testing/xunit/SkippedTestCase.cs +++ b/src/Microsoft.AspNetCore.Testing/xunit/SkippedTestCase.cs @@ -7,7 +7,7 @@ namespace Microsoft.AspNetCore.Testing.xunit { - internal class SkippedTestCase : XunitTestCase + public class SkippedTestCase : XunitTestCase { private string _skipReason; diff --git a/src/Microsoft.AspNetCore.Testing/xunit/TestMethodExtensions.cs b/src/Microsoft.AspNetCore.Testing/xunit/TestMethodExtensions.cs index 323fcba..5ec3bb4 100644 --- a/src/Microsoft.AspNetCore.Testing/xunit/TestMethodExtensions.cs +++ b/src/Microsoft.AspNetCore.Testing/xunit/TestMethodExtensions.cs @@ -7,7 +7,7 @@ namespace Microsoft.AspNetCore.Testing.xunit { - internal static class TestMethodExtensions + public static class TestMethodExtensions { public static string EvaluateSkipConditions(this ITestMethod testMethod) {