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