Files
cherrypick/cherrypick_generator/test/cherrypick_generator_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', () {
2025-05-16 09:30:30 +03:00
expect(2, 2);
2025-05-14 12:53:51 +03:00
});
});
}