import 'package:test/test.dart'; import 'package:fintracker_api/fintracker_api.dart'; // tests for GoalCreate void main() { final GoalCreate? instance = /* GoalCreate(...) */ null; // TODO add properties to the entity group(GoalCreate, () { // bool archived (default value: false) test('to test the property `archived`', () async { // TODO }); // String currency (default value: 'RUB') test('to test the property `currency`', () async { // TODO }); // decimal as string // String monthlyContribution test('to test the property `monthlyContribution`', () async { // TODO }); // String name test('to test the property `name`', () async { // TODO }); // String note test('to test the property `note`', () async { // TODO }); // String scope (default value: 'all') test('to test the property `scope`', () async { // TODO }); // decimal as string // String targetAmount test('to test the property `targetAmount`', () async { // TODO }); // DateTime targetDate test('to test the property `targetDate`', () async { // TODO }); }); }