just gen-client — покрывает links, cashflow-broker, ручные цены, imports/pending, goals/income/rebalance/tax/benchmarks.
65 lines
1.3 KiB
Dart
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
|
|
});
|
|
|
|
});
|
|
}
|