Files
FocusBuddy/test/widget_test.dart
2025-11-24 10:33:09 +08:00

24 lines
939 B
Dart

// This is a basic Flutter widget test.
//
// To perform an interaction with a widget in your test, use the WidgetTester
// utility in the flutter_test package. For example, you can send tap and scroll
// gestures. You can also use WidgetTester to find child widgets in the widget
// tree, read text, and verify that the values of widget properties are correct.
import 'package:flutter_test/flutter_test.dart';
import 'package:focus_buddy/services/encouragement_service.dart';
import 'package:focus_buddy/main.dart';
void main() {
testWidgets('App loads successfully', (WidgetTester tester) async {
// Create a mock encouragement service
final encouragementService = EncouragementService();
// Build our app and trigger a frame.
await tester.pumpWidget(MyApp(encouragementService: encouragementService));
// Verify that the app loads
expect(find.byType(MyApp), findsOneWidget);
});
}