mirror of
https://github.com/Smaug123/unofficial-nunit-runner
synced 2025-10-08 18:48:40 +00:00
26 lines
658 B
Forth
26 lines
658 B
Forth
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"
|