import 'package:test/test.dart'; import 'package:fintracker_api/fintracker_api.dart'; // tests for SourceStatus void main() { final SourceStatus? instance = /* SourceStatus(...) */ null; // TODO add properties to the entity group(SourceStatus, () { // String cursor test('to test the property `cursor`', () async { // TODO }); // DateTime lastRunAt test('to test the property `lastRunAt`', () async { // TODO }); // RunStatus lastRunStatus test('to test the property `lastRunStatus`', () async { // TODO }); // DateTime lastSuccessAt test('to test the property `lastSuccessAt`', () async { // TODO }); // bool queued test('to test the property `queued`', () async { // TODO }); // String source_ test('to test the property `source_`', () async { // TODO }); }); }