Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 589 Bytes

File metadata and controls

32 lines (23 loc) · 589 Bytes

ObjectBox Tests

Contains unit tests for the objectbox package to avoid a cyclic dependency on objectbox_generator.

To run set up the package:

dart pub get
dart run build_runner build

And run the tests:

dart test

Or for better log output (e.g. to attribute native logs to a test):

# Run only one test suite (== test file) at a time.
# Print log for every completed test.
dart test --concurrency=1 --reporter expanded

To run tests using an in-memory database:

export OBX_IN_MEMORY=true
dart test