17 lines
454 B
Forth
17 lines
454 B
Forth
open Expecto
|
|
open BitBadger.Documents.Tests.CSharp
|
|
|
|
let allTests =
|
|
testList
|
|
"BitBadger.Documents"
|
|
[ CommonTests.all
|
|
CommonCSharpTests.Unit
|
|
PostgresTests.all
|
|
SqliteTests.all
|
|
testSequenced SqliteExtensionTests.integrationTests
|
|
SqliteCSharpTests.All
|
|
testSequenced SqliteCSharpExtensionTests.Integration ]
|
|
|
|
[<EntryPoint>]
|
|
let main args = runTestsWithCLIArgs [] args allTests
|