12 lines
321 B
Dart
12 lines
321 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
group('Chicken Package Test Suite', () {
|
|
test('Test suite placeholder', () {
|
|
// This file serves as a test runner for the entire chicken package
|
|
// Individual test files should be run separately
|
|
expect(true, isTrue);
|
|
});
|
|
});
|
|
}
|