From 5637c406aa7411c5764cc19a6318102b522fa1af Mon Sep 17 00:00:00 2001 From: Oleg Nenashev Date: Fri, 31 Mar 2017 17:01:42 +0200 Subject: [PATCH] ExtensionTestBase should provide public methods within the test class --- src/Test/winswTests/Extensions/ExtensionTestBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Test/winswTests/Extensions/ExtensionTestBase.cs b/src/Test/winswTests/Extensions/ExtensionTestBase.cs index c7e8541..bd1543e 100644 --- a/src/Test/winswTests/Extensions/ExtensionTestBase.cs +++ b/src/Test/winswTests/Extensions/ExtensionTestBase.cs @@ -15,7 +15,7 @@ namespace winswTests.Extensions /// /// Type of the extension /// String for Type locator, which includes class and assembly names - protected static String getExtensionClassNameWithAssembly(Type type) + public static String getExtensionClassNameWithAssembly(Type type) { return type.ToString() + ", " + type.Assembly; }