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 buildAnd run the tests:
dart testOr 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 expandedTo run tests using an in-memory database:
export OBX_IN_MEMORY=true
dart test