This encompasses: - New behavior for SQLite - Migrated behavior for PostrgeSQL (from BitBadger.Npgsql.FSharp.Documents) - New "byField" behavior for PostgreSQL - A unification of C# and F# centric implementations
20 lines
589 B
Forth
20 lines
589 B
Forth
open Expecto
|
|
open BitBadger.Documents.Tests.CSharp
|
|
|
|
let allTests =
|
|
testList
|
|
"BitBadger.Documents"
|
|
[ CommonTests.all
|
|
CommonCSharpTests.Unit
|
|
PostgresTests.all
|
|
PostgresCSharpTests.All
|
|
PostgresExtensionTests.integrationTests
|
|
testSequenced PostgresCSharpExtensionTests.Integration
|
|
SqliteTests.all
|
|
SqliteCSharpTests.All
|
|
SqliteExtensionTests.integrationTests
|
|
testSequenced SqliteCSharpExtensionTests.Integration ]
|
|
|
|
[<EntryPoint>]
|
|
let main args = runTestsWithCLIArgs [] args allTests
|