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