Skip to content

Commit

Permalink
Adds more unit tests (many more to come)
Browse files Browse the repository at this point in the history
  • Loading branch information
replaysMike committed Apr 23, 2024
1 parent 8c2d7d7 commit 5ca7242
Show file tree
Hide file tree
Showing 20 changed files with 1,420 additions and 38 deletions.
24 changes: 24 additions & 0 deletions Binner/Binner.Testing/Binner.Testing.csproj
@@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageReference Include="NUnit.Analyzers" Version="3.6.1" />
<PackageReference Include="coverlet.collector" Version="6.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Library\Binner.Model\Binner.Model.csproj" />
</ItemGroup>

</Project>
1 change: 1 addition & 0 deletions Binner/Binner.Testing/GlobalUsings.cs
@@ -0,0 +1 @@
global using NUnit.Framework;

0 comments on commit 5ca7242

Please sign in to comment.