Портфели, создание счетов, ручные события, PATCH инструмента, ScopeCardOut, MetricsStatusOut, логотипы в HoldingOut.
37 lines
755 B
Dart
37 lines
755 B
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for InstrumentPatch
|
|
void main() {
|
|
final InstrumentPatch? instance = /* InstrumentPatch(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(InstrumentPatch, () {
|
|
// String assetClass
|
|
test('to test the property `assetClass`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String board
|
|
test('to test the property `board`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int lot
|
|
test('to test the property `lot`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String name
|
|
test('to test the property `name`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String sector
|
|
test('to test the property `sector`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|