Skip to content

Commit

Permalink
Removed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
polvallverdu committed Nov 19, 2024
1 parent c2af036 commit 7c7003b
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions test/fixtures/dart/parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,3 @@ void main(List<String> 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.');
}

0 comments on commit 7c7003b

Please sign in to comment.