- Update Android package namespace and applicationId to dev.fiatcode.tracpulse - Update AndroidManifest.xml package and app label to TracPulse - Move all Kotlin source files to dev/fiatcode/tracpulse/ package - Update pubspec.yaml name to tracpulse - Update all Dart imports from package:traccar_client to relative - Rename TraccarClientApp class to TracPulseApp - Update user-facing strings in permission_screen to TracPulse - Update notification channel label and wakeLock tag to TracPulse
13 lines
366 B
Dart
13 lines
366 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'package:tracpulse/main.dart';
|
|
|
|
void main() {
|
|
testWidgets('TracPulse smoke test', (WidgetTester tester) async {
|
|
// Build our app and trigger a frame.
|
|
await tester.pumpWidget(const TracPulseApp());
|
|
|
|
// Verify the app title is displayed
|
|
expect(find.text('TracPulse'), findsOneWidget);
|
|
});
|
|
}
|