import 'package:test/test.dart'; import 'package:fintracker_api/fintracker_api.dart'; // tests for InstrumentDetail void main() { final InstrumentDetail? instance = /* InstrumentDetail(...) */ null; // TODO add properties to the entity group(InstrumentDetail, () { // List events test('to test the property `events`', () async { // TODO }); // HoldingOut holding test('to test the property `holding`', () async { // TODO }); // InstrumentOut instrument test('to test the property `instrument`', () async { // TODO }); // List lots test('to test the property `lots`', () async { // TODO }); // List prices test('to test the property `prices`', () async { // TODO }); }); }