Files
fin-tracker/app/packages/api_client/test/account_create_test.dart
T
Dmitry bfe74ca47c chore(app): перегенерировать Dart-клиент
Портфели, создание счетов, ручные события, PATCH инструмента, ScopeCardOut, MetricsStatusOut, логотипы в HoldingOut.
2026-09-19 22:14:07 +03:00

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
});
});
}