mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-23 21:13:35 +00:00
14 lines
206 B
Dart
14 lines
206 B
Dart
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
group('A group of tests', () {
|
|
setUp(() {
|
|
// Additional setup goes here.
|
|
});
|
|
|
|
test('First Test', () {
|
|
expect(1, 1);
|
|
});
|
|
});
|
|
}
|