156 lines
3.3 KiB
Dart
156 lines
3.3 KiB
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for HoldingOut
|
|
void main() {
|
|
final HoldingOut? instance = /* HoldingOut(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(HoldingOut, () {
|
|
// decimal as string
|
|
// String accruedInterestRub
|
|
test('to test the property `accruedInterestRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// AssetClass assetClass
|
|
test('to test the property `assetClass`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String avgCost
|
|
test('to test the property `avgCost`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String board
|
|
test('to test the property `board`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String costCurrency
|
|
test('to test the property `costCurrency`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String costTotalRub
|
|
test('to test the property `costTotalRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String currency
|
|
test('to test the property `currency`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int daysHeld
|
|
test('to test the property `daysHeld`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime firstBuyDate
|
|
test('to test the property `firstBuyDate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String incomeRub
|
|
test('to test the property `incomeRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int instrumentId
|
|
test('to test the property `instrumentId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String ldvEligibleQty
|
|
test('to test the property `ldvEligibleQty`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String marketPrice
|
|
test('to test the property `marketPrice`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String name
|
|
test('to test the property `name`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String priceCurrency
|
|
test('to test the property `priceCurrency`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime priceDate
|
|
test('to test the property `priceDate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String priceStatus
|
|
test('to test the property `priceStatus`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String qty
|
|
test('to test the property `qty`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String realizedPnlRub
|
|
test('to test the property `realizedPnlRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String ticker
|
|
test('to test the property `ticker`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String unrealizedPnlNative
|
|
test('to test the property `unrealizedPnlNative`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String unrealizedPnlRub
|
|
test('to test the property `unrealizedPnlRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String valueNative
|
|
test('to test the property `valueNative`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String valueRub
|
|
test('to test the property `valueRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String weight
|
|
test('to test the property `weight`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String xirr
|
|
test('to test the property `xirr`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|