mirror of
https://github.com/Smaug123/WoofWare.Myriad
synced 2025-10-06 04:28:42 +00:00
21 lines
531 B
Forth
21 lines
531 B
Forth
namespace MyriadPlugin.Test
|
|
|
|
open NUnit.Framework
|
|
open WoofWare.Myriad.Plugins
|
|
open ApiSurface
|
|
|
|
[<TestFixture>]
|
|
module TestSurface =
|
|
let assembly = typeof<RemoveOptionsAttribute>.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
|