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