2024-01-06 22:04:05 +00:00
|
|
|
open Expecto
|
|
|
|
|
2024-01-11 03:11:48 +00:00
|
|
|
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 ]
|
2024-01-11 03:11:48 +00:00
|
|
|
]
|
2024-01-06 22:04:05 +00:00
|
|
|
|
|
|
|
[<EntryPoint>]
|
|
|
|
let main args = runTestsWithCLIArgs [] args allTests
|