import 'package:test/test.dart'; import 'package:fintracker_api/fintracker_api.dart'; // tests for SyncRunOut void main() { final SyncRunOut? instance = /* SyncRunOut(...) */ null; // TODO add properties to the entity group(SyncRunOut, () { // Map counts test('to test the property `counts`', () async { // TODO }); // String cursorAfter test('to test the property `cursorAfter`', () async { // TODO }); // String cursorBefore test('to test the property `cursorBefore`', () async { // TODO }); // String error test('to test the property `error`', () async { // TODO }); // DateTime finishedAt test('to test the property `finishedAt`', () async { // TODO }); // String id test('to test the property `id`', () async { // TODO }); // String source_ test('to test the property `source_`', () async { // TODO }); // DateTime startedAt test('to test the property `startedAt`', () async { // TODO }); // RunStatus status test('to test the property `status`', () async { // TODO }); // String triggeredBy test('to test the property `triggeredBy`', () async { // TODO }); // List warnings test('to test the property `warnings`', () async { // TODO }); }); }