Files
2026-09-18 14:20:50 +03:00

89 lines
1.9 KiB
Dart

import 'package:test/test.dart';
import 'package:fintracker_api/fintracker_api.dart';
// tests for SummaryOut
void main() {
final SummaryOut? instance = /* SummaryOut(...) */ null;
// TODO add properties to the entity
group(SummaryOut, () {
// DateTime asOf
test('to test the property `asOf`', () async {
// TODO
});
// decimal as string
// String cashRub
test('to test the property `cashRub`', () async {
// TODO
});
// DateTime computedAt
test('to test the property `computedAt`', () async {
// TODO
});
// int holdingCount
test('to test the property `holdingCount`', () async {
// TODO
});
// decimal as string
// String incomeRub
test('to test the property `incomeRub`', () async {
// TODO
});
// decimal as string
// String investedNetRub
test('to test the property `investedNetRub`', () async {
// TODO
});
// decimal as string
// String marketValueRub
test('to test the property `marketValueRub`', () async {
// TODO
});
// decimal as string
// String pnlTotalRub
test('to test the property `pnlTotalRub`', () async {
// TODO
});
// decimal as string
// String realizedPnlRub
test('to test the property `realizedPnlRub`', () async {
// TODO
});
// List<ReturnsOut> returns
test('to test the property `returns`', () async {
// TODO
});
// String scope
test('to test the property `scope`', () async {
// TODO
});
// int staleCount
test('to test the property `staleCount`', () async {
// TODO
});
// decimal as string
// String totalRub
test('to test the property `totalRub`', () async {
// TODO
});
// int unpricedCount
test('to test the property `unpricedCount`', () async {
// TODO
});
});
}