Merge branch 'master' into develop

# Conflicts:
#	extras/integration_tests/flutter_db/pubspec.lock
#	moor_ffi/CHANGELOG.md
#	moor_ffi/pubspec.yaml
This commit is contained in:
Simon Binder 2020-07-29 10:42:24 +02:00
commit 167a267bb7
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ description: Guide on writing unit tests for moor databases
Flutter apps using moor can always be tested with [integration tests](https://flutter.dev/docs/cookbook/testing/integration/introduction)
running on a real device. This guide focusses on writing unit tests for a database written in moor.
Those tests can be run and debugged on your computer without additional setup, you don't a
Those tests can be run and debugged on your computer without additional setup, you don't need a
physical device to run them.
## Setup
@ -108,4 +108,4 @@ test('stream emits a new user when the name updates', () async {
await database.updateName(id, 'changed name');
await expectation;
});
```
```