import 'package:test/test.dart'; import 'package:fintracker_api/fintracker_api.dart'; // tests for PriceManualIn void main() { final PriceManualIn? instance = /* PriceManualIn(...) */ null; // TODO add properties to the entity group(PriceManualIn, () { // String currency test('to test the property `currency`', () async { // TODO }); // DateTime d test('to test the property `d`', () async { // TODO }); // String note test('to test the property `note`', () async { // TODO }); // decimal as string // String price test('to test the property `price`', () async { // TODO }); }); }