Портфели, создание счетов, ручные события, PATCH инструмента, ScopeCardOut, MetricsStatusOut, логотипы в HoldingOut.
33 lines
749 B
Dart
33 lines
749 B
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for AccountCreate
|
|
void main() {
|
|
final AccountCreate? instance = /* AccountCreate(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(AccountCreate, () {
|
|
// Broker broker
|
|
test('to test the property `broker`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String currency (default value: 'RUB')
|
|
test('to test the property `currency`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String name
|
|
test('to test the property `name`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Agreement number exactly as the broker's report prints it
|
|
// String sourceId
|
|
test('to test the property `sourceId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|