Implemented first basic test

This commit is contained in:
Felix Kirchner
2025-04-26 17:02:28 +02:00
parent de9bb80b29
commit 517eb8a000
2 changed files with 8 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ dev_dependencies:
sdk: flutter sdk: flutter
flutter_lints: ^4.0.0 flutter_lints: ^4.0.0
test: ^1.25.15
flutter: flutter:

7
test/main_test.dart Normal file
View File

@@ -0,0 +1,7 @@
import 'package:flutter_test/flutter_test.dart';
void main() {
test('Counter value should be incremented', () {
expect(1, 1);
});
}