We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95222d3 commit dd6eda8Copy full SHA for dd6eda8
test/foundation/kt/standard/standart_test.dart
@@ -3,15 +3,6 @@ import 'package:test/test.dart';
3
4
void main() {
5
group('Standard test', () {
6
- test("also", () {
7
- String? test;
8
- var result = test?.also((p0) => "r");
9
- expect(result, null);
10
- test = "test";
11
- var result2 = test.also((p0) => "r");
12
- expect(result2, "r");
13
- });
14
-
15
test("takeIf", () {
16
String test = "takIf";
17
@@ -41,14 +32,6 @@ void main() {
41
32
expect(finalIndex, 9);
42
33
});
43
34
44
- test("let with?Operator Expect null", () {
45
- String? str;
46
- var result = str?.let((self) {
47
- return self.isNotEmpty;
48
49
50
51
52
35
test("let without?Operator Expect 1", () {
53
36
String? str;
54
37
var result = str.let((self) {
0 commit comments