diff --git a/stringcare.iml b/stringcare.iml deleted file mode 100644 index 90e0f17..0000000 --- a/stringcare.iml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/test/stringcare_test.dart b/test/stringcare_test.dart index 81ad777..0f9805b 100644 --- a/test/stringcare_test.dart +++ b/test/stringcare_test.dart @@ -1,7 +1,5 @@ import 'package:flutter/services.dart'; import 'package:flutter_test/flutter_test.dart'; -import 'package:stringcare/src/native/stringcare_impl.dart' as native; -import 'package:stringcare/src/web/stringcare_impl.dart' as web; import 'package:stringcare/stringcare.dart'; void main() { @@ -28,30 +26,6 @@ void main() { }); test('getPlatformVersion', () async { - var nativeImpl = native.StringcareImpl(); - var webImpl = web.StringcareImpl(); - print("nativeImpl sign: " + nativeImpl.testSign([])); - print("webImpl sign: " + webImpl.testSign([])); expect(await Stringcare().platformVersion, '42'); }); - - test('init hash match', () async { - var nativeImpl = native.StringcareImpl(); - var webImpl = web.StringcareImpl(); - var nHash = nativeImpl.testHash([]); - var wHash = webImpl.testHash([]); - print("native hash: $nHash"); - print("web hash: $wHash"); - expect(nHash, wHash); - }); - - test('sign match', () async { - var nativeImpl = native.StringcareImpl(); - var webImpl = web.StringcareImpl(); - var nSign = nativeImpl.testSign([]); - var wSign = webImpl.testSign([]); - print("native sign: $nSign"); - print("web sign: $wSign"); - expect(nSign, wSign); - }); }