Files
cherrypick/cherrypick_annotations/test/cherrypick_annotations_test.dart

14 lines
206 B
Dart
Raw Normal View History

2025-05-14 12:53:51 +03:00
import 'package:test/test.dart';
void main() {
group('A group of tests', () {
setUp(() {
// Additional setup goes here.
});
test('First Test', () {
expect(1, 1);
});
});
}