Initial commit

This commit is contained in:
Smaug123
2021-12-24 18:44:45 +00:00
commit 910a75d18e
6 changed files with 191 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="UnitTest1.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FicroKanSharp\FicroKanSharp.fsproj" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,10 @@
namespace FicroKanSharp.Test
open FicroKanSharp
open Xunit
module TestThing =
[<Fact>]
let ``Foo`` () : unit =
failwith "TODO!"