Files
cherrypick/cherrypick_generator/test/cherrypick_generator_test.dart
2025-05-19 16:11:41 +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(2, 2);
});
});
}