coin-recog-demo/test/widget_test.dart
a1518 7cee2ae28f Initial commit: Coin scan demo with blur detection and coin contour cropping
- YOLOv5 TFLite coin detection with NMS
- Blur classifier for image quality gating
- Circular contour refinement and cropping
- Camera capture and gallery pick

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-13 20:35:28 -07:00

11 lines
269 B
Dart

import 'package:flutter_test/flutter_test.dart';
import 'package:coin_dex_demo/main.dart';
void main() {
testWidgets('app builds', (tester) async {
await tester.pumpWidget(const CoinScanDemoApp());
expect(find.text('硬币扫描'), findsOneWidget);
});
}