Make the ffi test run via `pub run test`

This commit is contained in:
Simon Binder 2019-09-24 22:47:32 +02:00
parent bf6d60b170
commit 8ff0ece29a
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
5 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
import 'package:test/test.dart';
import '../runners.dart';
import '../ffi_test.dart';
void main(TestedDatabase db) {
test('insert statements report their id', () async {

View File

@ -1,6 +1,6 @@
import 'package:test/test.dart';
import '../runners.dart';
import '../ffi_test.dart';
void main(TestedDatabase db) {
test('prepared statements can be used multiple times', () async {

View File

@ -1,6 +1,6 @@
import 'package:test/test.dart';
import '../runners.dart';
import '../ffi_test.dart';
void main(TestedDatabase db) {
test('select statements return expected value', () async {

View File

@ -1,6 +1,6 @@
import 'package:test/test.dart';
import '../runners.dart';
import '../ffi_test.dart';
void main(TestedDatabase db) {
test('can set the user version on a database', () async {