This commit is contained in:
MarcWieland
2026-07-26 23:58:12 +02:00
commit 411ede36ef
596 changed files with 39941 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import 'package:flutter_test/flutter_test.dart';
import 'package:handwerksfreund/main.dart';
void main() {
testWidgets('App loads main navigation screen', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const HandwerksfreundApp());
// Verify that the title 'Kunden' is found
expect(find.text('Kunden'), findsWidgets);
});
}