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 c2af036 commit 7c7003bCopy full SHA for 7c7003b
test/fixtures/dart/parser.dart
@@ -9,25 +9,3 @@ void main(List<String> arguments) async {
9
stdout.write(result);
10
});
11
}
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