Files
cherrypick/cherrypick_annotations/test/cherrypick_annotations_test.dart
2025-05-19 16:10:44 +03:00

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);
});
});
}