mirror of
https://github.com/Smaug123/WoofWare.Whippet
synced 2025-10-07 08:48:40 +00:00
27 lines
745 B
Forth
27 lines
745 B
Forth
namespace WoofWare.Whippet.Fantomas.Test
|
|
|
|
open NUnit.Framework
|
|
open WoofWare.Whippet.Fantomas
|
|
open ApiSurface
|
|
|
|
[<TestFixture>]
|
|
module TestSurface =
|
|
|
|
let coreAssembly = typeof<CompExprBinding>.Assembly
|
|
|
|
[<Test>]
|
|
let ``Ensure API surface has not been modified`` () = ApiSurface.assertIdentical coreAssembly
|
|
|
|
[<Test>]
|
|
// https://github.com/nunit/nunit3-vs-adapter/issues/876
|
|
let CheckVersionAgainstRemote () =
|
|
MonotonicVersion.validate coreAssembly "WoofWare.Whippet.Fantomas"
|
|
|
|
[<Test ; Explicit>]
|
|
let ``Update API surface`` () =
|
|
ApiSurface.writeAssemblyBaseline coreAssembly
|
|
|
|
[<Test>]
|
|
let ``Ensure public API is fully documented`` () =
|
|
DocCoverage.assertFullyDocumented coreAssembly
|