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

86 lines
1.8 KiB
Dart

import 'package:test/test.dart';
import 'package:fintracker_api/fintracker_api.dart';
// tests for ScopeCardOut
void main() {
final ScopeCardOut? instance = /* ScopeCardOut(...) */ null;
// TODO add properties to the entity
group(ScopeCardOut, () {
// DateTime asOf
test('to test the property `asOf`', () async {
// TODO
});
// decimal as string
// String dayChangePct
test('to test the property `dayChangePct`', () async {
// TODO
});
// decimal as string
// String dayChangeRub
test('to test the property `dayChangeRub`', () async {
// TODO
});
// decimal as string
// String incomeYearPct
test('to test the property `incomeYearPct`', () async {
// TODO
});
// decimal as string
// String incomeYearRub
test('to test the property `incomeYearRub`', () async {
// TODO
});
// decimal as string
// String investedRub
test('to test the property `investedRub`', () async {
// TODO
});
// String kind
test('to test the property `kind`', () async {
// TODO
});
// String name
test('to test the property `name`', () async {
// TODO
});
// decimal as string
// String pnlPct
test('to test the property `pnlPct`', () async {
// TODO
});
// decimal as string
// String pnlRub
test('to test the property `pnlRub`', () async {
// TODO
});
// String scope
test('to test the property `scope`', () async {
// TODO
});
// decimal as string
// String totalRub
test('to test the property `totalRub`', () async {
// TODO
});
// decimal as string
// String xirr
test('to test the property `xirr`', () async {
// TODO
});
});
}