Add test project

This commit is contained in:
Stedoss 2022-10-30 01:01:12 +00:00
parent add80a3521
commit 896207e5d1
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0" />
<PackageReference Include="coverlet.collector" Version="3.1.0" />
</ItemGroup>
</Project>

View File

@ -2,6 +2,8 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LeedsBeerQuest.API", "LeedsBeerQuest.API\LeedsBeerQuest.API.csproj", "{98E83960-5FE3-47E2-B1C1-2A449BAAB6E8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LeedsBeerQuest.API.Tests", "LeedsBeerQuest.API.Tests\LeedsBeerQuest.API.Tests.csproj", "{A73E79B2-CE91-49DC-928A-4BDBC000994E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -12,5 +14,9 @@ Global
{98E83960-5FE3-47E2-B1C1-2A449BAAB6E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{98E83960-5FE3-47E2-B1C1-2A449BAAB6E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{98E83960-5FE3-47E2-B1C1-2A449BAAB6E8}.Release|Any CPU.Build.0 = Release|Any CPU
{A73E79B2-CE91-49DC-928A-4BDBC000994E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A73E79B2-CE91-49DC-928A-4BDBC000994E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A73E79B2-CE91-49DC-928A-4BDBC000994E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A73E79B2-CE91-49DC-928A-4BDBC000994E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal