Skip to content

Commit

Permalink
Implement full test suite with almost 100% coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsitton committed Jan 10, 2024
1 parent 6b359f7 commit d1de5e9
Show file tree
Hide file tree
Showing 7 changed files with 3,605 additions and 0 deletions.
23 changes: 23 additions & 0 deletions BinaryEx.Tests/BinaryEx.Tests.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>

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

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2" />
<PackageReference Include="NUnit.Analyzers" Version="3.6.1" />
<PackageReference Include="coverlet.collector" Version="3.2.0" />
</ItemGroup>

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

</Project>
Loading

0 comments on commit d1de5e9

Please sign in to comment.