Skip to content

Latest commit

 

History

History

objectbox_test

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

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