card-recog-demo/test/widget_test.dart
a1518 ccf8eeb21d Initial commit: Flutter card recognition demo
Camera capture, corner detection/refinement, and preview crop pipeline for trading cards.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-12 20:17:32 -07:00

11 lines
268 B
Dart

import 'package:flutter_test/flutter_test.dart';
import 'package:carddex_demo/main.dart';
void main() {
testWidgets('app builds', (tester) async {
await tester.pumpWidget(const CardScanDemoApp());
expect(find.text('卡牌扫描'), findsOneWidget);
});
}