feat : add liveStock package

This commit is contained in:
2025-05-18 11:15:28 +03:30
parent 1b30dafafc
commit 7f66476eca
10 changed files with 151 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
import 'package:livestock/livestock.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);
});
});
}