Skip to content

Commit

Permalink
Added Test Project
Browse files Browse the repository at this point in the history
  • Loading branch information
fraher committed Mar 31, 2019
1 parent cd4499b commit 0ef4c72
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 1 deletion.
8 changes: 7 additions & 1 deletion AnalysisTool.sln
Expand Up @@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27428.2043
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AnalysisTool", "AnalysisTool\AnalysisTool.csproj", "{A1707ACF-6A8A-4C14-A596-7E54856AF95D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AnalysisTool", "AnalysisTool\AnalysisTool.csproj", "{A1707ACF-6A8A-4C14-A596-7E54856AF95D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AnalysisToolTests", "AnalysisToolTests\AnalysisToolTests.csproj", "{D71F36EB-3444-430C-9E57-F8A0C4E76B06}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -15,6 +17,10 @@ Global
{A1707ACF-6A8A-4C14-A596-7E54856AF95D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A1707ACF-6A8A-4C14-A596-7E54856AF95D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A1707ACF-6A8A-4C14-A596-7E54856AF95D}.Release|Any CPU.Build.0 = Release|Any CPU
{D71F36EB-3444-430C-9E57-F8A0C4E76B06}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D71F36EB-3444-430C-9E57-F8A0C4E76B06}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D71F36EB-3444-430C-9E57-F8A0C4E76B06}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D71F36EB-3444-430C-9E57-F8A0C4E76B06}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
19 changes: 19 additions & 0 deletions AnalysisToolTests/AnalysisToolTests.csproj
@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="xunit" Version="2.4.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\AnalysisTool\AnalysisTool.csproj" />
</ItemGroup>

</Project>
14 changes: 14 additions & 0 deletions AnalysisToolTests/UnitTest1.cs
@@ -0,0 +1,14 @@
using System;
using Xunit;

namespace AnalysisToolTests
{
public class UnitTest1
{
[Fact]
public void Test1()
{

}
}
}

0 comments on commit 0ef4c72

Please sign in to comment.