Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 1863ba6

Browse files
committed
Add a test directory to point users to the correct tests inside the example directory.
1 parent 7baf6b4 commit 1863ba6

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## test
2+
3+
This package uses integration tests for testing.
4+
5+
See `example/README.md` for more info.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import 'package:flutter_test/flutter_test.dart';
2+
3+
void main() {
4+
test('Tell the user where to find the real tests', () {
5+
print('---');
6+
print('This package uses integration_test for its tests.');
7+
print('See `example/README.md` for more info.');
8+
print('---');
9+
});
10+
}

0 commit comments

Comments
 (0)