10 lines
258 B
Forth
10 lines
258 B
Forth
open Expecto
|
|
|
|
let allTests = testList "MyWebLog" [
|
|
testList "Domain" [ SupportTypesTests.all; DataTypesTests.all; ViewModelsTests.all ]
|
|
testList "Data" [ ConvertersTests.all ]
|
|
]
|
|
|
|
[<EntryPoint>]
|
|
let main args = runTestsWithCLIArgs [] args allTests
|