Created separate VSPackage classes for VS2012 and VS2013

This commit is contained in:
Christian Resma Helle
2013-08-14 22:22:32 +02:00
parent 1b8d6f04e9
commit 2f134acc5e
11 changed files with 174 additions and 27 deletions
@@ -9,7 +9,7 @@ namespace ChristianHelle.DeveloperTools.CodeGenerators.Resw.CustomTool.Tests
public class CodeGeneratorFactoryTests
{
private string reswFileContents;
private const string ClassName = "C:\\Test\\Resources\\Strings.resw";
private const string CLASS_NAME = "C:\\Test\\Resources\\Strings.resw";
[TestInitialize]
public void Initialize()
@@ -21,7 +21,7 @@ namespace ChristianHelle.DeveloperTools.CodeGenerators.Resw.CustomTool.Tests
public void CodeGeneratorFactoryReturnsValidInstance()
{
var target = new CodeGeneratorFactory();
var actual = target.Create(ClassName, "TestApp", reswFileContents);
var actual = target.Create(CLASS_NAME, "TestApp", reswFileContents);
Assert.IsNotNull(actual);
}
}