Skip to content

Commit

Permalink
add rests
Browse files Browse the repository at this point in the history
  • Loading branch information
ormico committed Jul 7, 2019
1 parent 84f42f3 commit 2ce519c
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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="16.0.1" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Ormico.DbPatchManager.Logic\Ormico.DbPatchManager.Logic.csproj" />
</ItemGroup>

</Project>
13 changes: 13 additions & 0 deletions src/Ormico.DbPatchManager.Logic.Tests/UnitTest1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace Ormico.DbPatchManager.Logic.Tests
{
[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
}
}
}
6 changes: 6 additions & 0 deletions src/Ormico.DbPatchManager.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ormico.DbPatchManager.CLI",
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ormico.DbPatchManager.Logic", "Ormico.DbPatchManager.Logic\Ormico.DbPatchManager.Logic.csproj", "{009D6D57-82CD-4617-A0B2-83F70D71E44E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ormico.DbPatchManager.Logic.Tests", "Ormico.DbPatchManager.Logic.Tests\Ormico.DbPatchManager.Logic.Tests.csproj", "{59FD6996-4792-4F29-8F31-5873BC61F974}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -21,6 +23,10 @@ Global
{009D6D57-82CD-4617-A0B2-83F70D71E44E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{009D6D57-82CD-4617-A0B2-83F70D71E44E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{009D6D57-82CD-4617-A0B2-83F70D71E44E}.Release|Any CPU.Build.0 = Release|Any CPU
{59FD6996-4792-4F29-8F31-5873BC61F974}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{59FD6996-4792-4F29-8F31-5873BC61F974}.Debug|Any CPU.Build.0 = Debug|Any CPU
{59FD6996-4792-4F29-8F31-5873BC61F974}.Release|Any CPU.ActiveCfg = Release|Any CPU
{59FD6996-4792-4F29-8F31-5873BC61F974}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit 2ce519c

Please sign in to comment.