Initial commit

This commit is contained in:
Smaug123
2025-02-13 23:30:15 +00:00
commit a5a3d87ba9
15 changed files with 505 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace WoofWare.DotnetRuntime.Test
open FsUnitTyped
open NUnit.Framework
[<TestFixture>]
module TestThing =
[<Test>]
let ``foo is a thing`` () = 1 |> shouldEqual 1

View File

@@ -0,0 +1,28 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<IsPackable>false</IsPackable>
<OutputType>Exe</OutputType>
<IsTestProject>true</IsTestProject>
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
<EnableNUnitRunner>true</EnableNUnitRunner>
</PropertyGroup>
<ItemGroup>
<Compile Include="TestThing.fs"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../WoofWare.DotnetRuntime/WoofWare.DotnetRuntime.fsproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="FsUnit" Version="7.0.1"/>
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0"/>
<PackageReference Include="NUnit" Version="4.3.2"/>
</ItemGroup>
</Project>