22 lines
525 B
Forth
22 lines
525 B
Forth
namespace PureGym.Test
|
|
|
|
open PureGym
|
|
open NUnit.Framework
|
|
open ApiSurface
|
|
|
|
[<TestFixture>]
|
|
module TestSurface =
|
|
|
|
let assembly = typeof<Gym>.Assembly
|
|
|
|
[<Test>]
|
|
let ``Ensure API surface has not been modified`` () = ApiSurface.assertIdentical assembly
|
|
|
|
[<Test ; Explicit>]
|
|
let ``Update API surface`` () =
|
|
ApiSurface.writeAssemblyBaseline assembly
|
|
|
|
[<Test ; Explicit "This isn't done yet">]
|
|
let ``Ensure public API is fully documented`` () =
|
|
DocCoverage.assertFullyDocumented assembly
|