37 lines
807 B
Dart
37 lines
807 B
Dart
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<EventOut> 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<LotOut> lots
|
|
test('to test the property `lots`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<PricePoint> prices
|
|
test('to test the property `prices`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|