myWebLog/src/MyWebLog.Tests/Program.fs

10 lines
274 B
Forth
Raw Normal View History

open Expecto
let allTests = testList "MyWebLog" [
testList "Domain" [ SupportTypesTests.all; DataTypesTests.all; ViewModelsTests.all ]
2024-01-21 14:17:01 +00:00
testList "Data" [ ConvertersTests.all; UtilsTests.all ]
]
[<EntryPoint>]
let main args = runTestsWithCLIArgs [] args allTests