12 lines
310 B
Dart
12 lines
310 B
Dart
// Basic Flutter widget test placeholder.
|
|
// Anda bisa menyesuaikan isi test ini nanti sesuai kebutuhan.
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('App builds without crashing', (WidgetTester tester) async {
|
|
// Placeholder test sederhana.
|
|
expect(1 + 1, 2);
|
|
});
|
|
}
|