myWebLog/src/MyWebLog.Tests/Program.fs

10 lines
295 B
Forth
Raw Normal View History

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