10 lines
275 B
Dart
10 lines
275 B
Dart
|
import 'package:flutter_test/flutter_test.dart';
|
||
|
import 'package:cpd_app/main.dart';
|
||
|
|
||
|
void main() {
|
||
|
testWidgets('Counter increments smoke test', (WidgetTester tester) async {
|
||
|
// Build our app and trigger a frame.
|
||
|
await tester.pumpWidget(const OpticText());
|
||
|
});
|
||
|
}
|