myWebLog/src/MyWebLog.Tests/Program.fs

9 lines
214 B
Forth
Raw Normal View History

open Expecto
let allTests = testList "MyWebLog" [
testList "Domain" [ SupportTypesTests.all; DataTypesTests.all; ViewModelsTests.all ]
]
[<EntryPoint>]
let main args = runTestsWithCLIArgs [] args allTests