just gen-client — покрывает links, cashflow-broker, ручные цены, imports/pending, goals/income/rebalance/tax/benchmarks.
92 lines
1.9 KiB
Dart
92 lines
1.9 KiB
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for TaxLotOut
|
|
void main() {
|
|
final TaxLotOut? instance = /* TaxLotOut(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(TaxLotOut, () {
|
|
// int accountId
|
|
test('to test the property `accountId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String accountName
|
|
test('to test the property `accountName`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String costRub
|
|
test('to test the property `costRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int daysToLdv
|
|
test('to test the property `daysToLdv`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int instrumentId
|
|
test('to test the property `instrumentId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime ldvDate
|
|
test('to test the property `ldvDate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// bool ldvEligible
|
|
test('to test the property `ldvEligible`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int lotId
|
|
test('to test the property `lotId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String marketValueRub
|
|
test('to test the property `marketValueRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String name
|
|
test('to test the property `name`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime openDate
|
|
test('to test the property `openDate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String qtyRemaining
|
|
test('to test the property `qtyRemaining`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String taxIfSoldNowRub
|
|
test('to test the property `taxIfSoldNowRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String ticker
|
|
test('to test the property `ticker`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String unrealizedGainRub
|
|
test('to test the property `unrealizedGainRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|