Skip to content

Commit 1a4cd9f

Browse files
committed
feature: removed iml and 2 not valid tests
1 parent d31aa60 commit 1a4cd9f

File tree

2 files changed

+0
-48
lines changed

2 files changed

+0
-48
lines changed

stringcare.iml

-22
This file was deleted.

test/stringcare_test.dart

-26
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import 'package:flutter/services.dart';
22
import 'package:flutter_test/flutter_test.dart';
3-
import 'package:stringcare/src/native/stringcare_impl.dart' as native;
4-
import 'package:stringcare/src/web/stringcare_impl.dart' as web;
53
import 'package:stringcare/stringcare.dart';
64

75
void main() {
@@ -28,30 +26,6 @@ void main() {
2826
});
2927

3028
test('getPlatformVersion', () async {
31-
var nativeImpl = native.StringcareImpl();
32-
var webImpl = web.StringcareImpl();
33-
print("nativeImpl sign: " + nativeImpl.testSign([]));
34-
print("webImpl sign: " + webImpl.testSign([]));
3529
expect(await Stringcare().platformVersion, '42');
3630
});
37-
38-
test('init hash match', () async {
39-
var nativeImpl = native.StringcareImpl();
40-
var webImpl = web.StringcareImpl();
41-
var nHash = nativeImpl.testHash([]);
42-
var wHash = webImpl.testHash([]);
43-
print("native hash: $nHash");
44-
print("web hash: $wHash");
45-
expect(nHash, wHash);
46-
});
47-
48-
test('sign match', () async {
49-
var nativeImpl = native.StringcareImpl();
50-
var webImpl = web.StringcareImpl();
51-
var nSign = nativeImpl.testSign([]);
52-
var wSign = webImpl.testSign([]);
53-
print("native sign: $nSign");
54-
print("web sign: $wSign");
55-
expect(nSign, wSign);
56-
});
5731
}

0 commit comments

Comments
 (0)