first commit

This commit is contained in:
2024-12-01 02:11:03 +07:00
commit 0266daf622
153 changed files with 9383 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
// This is an example unit test.
//
// A unit test tests a single function, method, or class. To learn more about
// writing unit tests, visit
// https://flutter.dev/to/unit-testing
import 'package:flutter_test/flutter_test.dart';
void main() {
group('Plus Operator', () {
test('should add two numbers together', () {
expect(1 + 1, 2);
});
});
}