ExtensionTestBase should provide public methods within the test class

pull/202/head
Oleg Nenashev 2017-03-31 17:01:42 +02:00 committed by GitHub
parent 8cd58531f6
commit 5637c406aa
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ namespace winswTests.Extensions
/// </summary> /// </summary>
/// <param name="type">Type of the extension</param> /// <param name="type">Type of the extension</param>
/// <returns>String for Type locator, which includes class and assembly names</returns> /// <returns>String for Type locator, which includes class and assembly names</returns>
protected static String getExtensionClassNameWithAssembly(Type type) public static String getExtensionClassNameWithAssembly(Type type)
{ {
return type.ToString() + ", " + type.Assembly; return type.ToString() + ", " + type.Assembly;
} }