MOD: added integration test and removed debug test

This commit is contained in:
JohnE 2026-03-13 19:57:37 -07:00
parent 37d53398ef
commit 143427a5d5
2 changed files with 3 additions and 11 deletions

View File

@ -1,11 +0,0 @@
import 'package:integration_test/integration_test.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:ccc_cryptography/ccc_cryptography.dart';
void main() {
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
setUpAll(() async => await RustLib.init());
test('Can call rust function', () async {
expect(greet(name: "Tom"), "Hello, Tom!");
});
}

View File

@ -0,0 +1,3 @@
import 'package:integration_test/integration_test_driver.dart';
Future<void> main() => integrationDriver();