myWebLog/src/MyWebLog.Tests/Program.fs

10 lines
230 B
Forth
Raw Normal View History

open Expecto
let allTests =
testList
"MyWebLog"
2024-01-11 01:53:59 +00:00
[ testList "Domain" [ SupportTypesTests.all; DataTypesTests.all; ViewModelsTests.all ] ]
[<EntryPoint>]
let main args = runTestsWithCLIArgs [] args allTests