feat : package chicken and added to app

This commit is contained in:
MrM
2025-06-03 23:26:38 +03:30
parent 880ef4c175
commit 5d5956c7f2
18 changed files with 383 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
import 'package:chicken/chicken.dart';
import 'package:test/test.dart';
void main() {
group('A group of tests', () {
final awesome = Awesome();
setUp(() {
// Additional setup goes here.
});
test('First Test', () {
expect(awesome.isAwesome, isTrue);
});
});
}