diff --git a/test/fixtures/dart/parser.dart b/test/fixtures/dart/parser.dart index a8a7abc16..24d59a77b 100644 --- a/test/fixtures/dart/parser.dart +++ b/test/fixtures/dart/parser.dart @@ -9,25 +9,3 @@ void main(List arguments) async { stdout.write(result); }); } - -void testNestedObjectNaming() { - final json = ''' - { - "hello": "world", - "works": { - "yes": true, - "no": false - } - } - '''; - - final fasfasfsa = Fasfasfsa.fromJson(jsonDecode(json)); - assert(fasfasfsa.works is Fasfasfsa_Works); - assert(fasfasfsa.works.yes == true); - assert(fasfasfsa.works.no == false); -} - -void main() { - testNestedObjectNaming(); - print('All tests passed.'); -}