Skip to content

Commit 168ead8

Browse files
committed
add test project
1 parent ef15f35 commit 168ead8

2 files changed

Lines changed: 28 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net6.0</TargetFramework>
6+
<GenerateProgramFile>false</GenerateProgramFile>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<Compile Include="Main.fs" />
11+
</ItemGroup>
12+
13+
<ItemGroup>
14+
<ProjectReference Include="..\..\src\ROCrate\ARCtrl.ROCrate.fsproj" />
15+
<ProjectReference Include="..\TestingUtils\TestingUtils.fsproj" />
16+
</ItemGroup>
17+
<ItemGroup>
18+
<PackageReference Update="FSharp.Core" Version="7.0.402" />
19+
</ItemGroup>
20+
</Project>

tests/ROCrate/Main.fs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module ROCrate.Tests
2+
3+
open Fable.Pyxpecto
4+
5+
let all = testSequenced <| testList "ROCrate" []
6+
7+
[<EntryPoint>]
8+
let main argv = Pyxpecto.runTests [||] all

0 commit comments

Comments
 (0)