Files
fin-tracker/app/packages/api_client/test/trade_out_test.dart
T
Dmitry ccd06f32f7 chore(app): сгенерированный Dart-клиент
just gen-client — покрывает links, cashflow-broker, ручные цены,
imports/pending, goals/income/rebalance/tax/benchmarks.
2026-09-19 10:46:09 +03:00

65 lines
1.3 KiB
Dart

import 'package:test/test.dart';
import 'package:fintracker_api/fintracker_api.dart';
// tests for TradeOut
void main() {
final TradeOut? instance = /* TradeOut(...) */ null;
// TODO add properties to the entity
group(TradeOut, () {
// String action
test('to test the property `action`', () async {
// TODO
});
// decimal as string
// String amountRub
test('to test the property `amountRub`', () async {
// TODO
});
// bool blockedByCash
test('to test the property `blockedByCash`', () async {
// TODO
});
// int instrumentId
test('to test the property `instrumentId`', () async {
// TODO
});
// int lot
test('to test the property `lot`', () async {
// TODO
});
// String name
test('to test the property `name`', () async {
// TODO
});
// decimal as string
// String price
test('to test the property `price`', () async {
// TODO
});
// String priceCurrency
test('to test the property `priceCurrency`', () async {
// TODO
});
// decimal as string
// String suggestedQty
test('to test the property `suggestedQty`', () async {
// TODO
});
// String ticker
test('to test the property `ticker`', () async {
// TODO
});
});
}