Skip to content

Commit

Permalink
Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
christianhelle committed Apr 24, 2014
1 parent d189fb6 commit 8002e34
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
<Compile Include="SignOff-Tests\CSharpProjectTests.cs" />
<Compile Include="SignOff-Tests\SolutionTests.cs" />
<Compile Include="SignOff-Tests\VBProjectTests.cs" />
<Compile Include="VisualStudioVersionHelperTests.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Key.snk" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using ChristianHelle.DeveloperTools.CodeGenerators.Resw.VSPackage.CustomTool;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace VSPackage_IntegrationTests
{
[TestClass]
public class VisualStudioHelperTests
{
[TestMethod]
public void GetVersionTests()
{
var actual = VisualStudioHelper.GetVersion();
Assert.AreNotEqual(VisualStudioVersion.Unknown, actual);
}
}
}

0 comments on commit 8002e34

Please sign in to comment.