typedb-test 0.1.0

Test fixture for TypeDB, using googletest StaticFixture.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# typedb-test

Test fixture for TypeDB, using googletest StaticFixture.

## Usage

```rust
#![cfg(test)]

use crate::{TypeDB, googletest::gtest};

#[tokio::test]
#[gtest]
async fn test_models(db: &&TypeDB) {
    db.databases().all().await.unwrap();
}
```