Prepare for release (#27)

This commit is contained in:
Patrick Stevens
2024-06-05 23:21:45 +01:00
committed by GitHub
parent f6e907395c
commit 58b1dfedfd
17 changed files with 718 additions and 156 deletions

View File

@@ -0,0 +1,25 @@
namespace TestRunner.Test
open NUnit.Framework
open ApiSurface
[<TestFixture>]
module TestSurface =
let assembly = typeof<TestRunner.Combinatorial>.Assembly
[<Test>]
let ``Ensure API surface has not been modified`` () = ApiSurface.assertIdentical assembly
[<Test ; Explicit>]
let ``Update API surface`` () =
ApiSurface.writeAssemblyBaseline assembly
[<Test>]
let ``Ensure public API is fully documented`` () =
DocCoverage.assertFullyDocumented assembly
[<Test>]
[<Explicit "Not yet published">]
let ``Ensure version is monotonic`` () =
MonotonicVersion.validate assembly "CHOOSE A NAME"