myWebLog/src/MyWebLog.Tests/Program.fs

10 lines
258 B
Forth
Raw Normal View History

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