Skip to content

Commit

Permalink
Added tests for code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
bawelter committed Jun 19, 2019
1 parent 15fe4e6 commit de83e77
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/couchbase_lite_test.dart
Expand Up @@ -140,6 +140,7 @@ void main() {
await database.deleteDocument("docid");
expect(await database.count, 1);
expect(await database.saveDocument(Document({})), "documentid");
expect(await database.saveDocument(Document({}, "docid")), "docid");
expect(await database.saveDocumentWithId("docid", Document({})), "docid");
MutableDocument doc = MutableDocument({});
await database.save(doc);
Expand Down

0 comments on commit de83e77

Please sign in to comment.