import 'package:test/test.dart'; import 'package:fintracker_api/fintracker_api.dart'; // tests for UserOut void main() { final UserOut? instance = /* UserOut(...) */ null; // TODO add properties to the entity group(UserOut, () { // String email test('to test the property `email`', () async { // TODO }); // int id test('to test the property `id`', () async { // TODO }); }); }