Skip to content

Commit 7c7003b

Browse files
committed
Removed tests
1 parent c2af036 commit 7c7003b

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

test/fixtures/dart/parser.dart

-22
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,3 @@ void main(List<String> arguments) async {
99
stdout.write(result);
1010
});
1111
}
12-
13-
void testNestedObjectNaming() {
14-
final json = '''
15-
{
16-
"hello": "world",
17-
"works": {
18-
"yes": true,
19-
"no": false
20-
}
21-
}
22-
''';
23-
24-
final fasfasfsa = Fasfasfsa.fromJson(jsonDecode(json));
25-
assert(fasfasfsa.works is Fasfasfsa_Works);
26-
assert(fasfasfsa.works.yes == true);
27-
assert(fasfasfsa.works.no == false);
28-
}
29-
30-
void main() {
31-
testNestedObjectNaming();
32-
print('All tests passed.');
33-
}

0 commit comments

Comments
 (0)