just gen-client — покрывает links, cashflow-broker, ручные цены, imports/pending, goals/income/rebalance/tax/benchmarks.
82 lines
1.7 KiB
Dart
82 lines
1.7 KiB
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for CalendarEntry
|
|
void main() {
|
|
final CalendarEntry? instance = /* CalendarEntry(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(CalendarEntry, () {
|
|
// decimal as string
|
|
// String amount
|
|
test('to test the property `amount`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String amountRub
|
|
test('to test the property `amountRub`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String basis
|
|
test('to test the property `basis`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String currency
|
|
test('to test the property `currency`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime expectedDate
|
|
test('to test the property `expectedDate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int instrumentId
|
|
test('to test the property `instrumentId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String kind
|
|
test('to test the property `kind`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String name
|
|
test('to test the property `name`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String perUnit
|
|
test('to test the property `perUnit`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String qty
|
|
test('to test the property `qty`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime recordDate
|
|
test('to test the property `recordDate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String taxWithheld
|
|
test('to test the property `taxWithheld`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String ticker
|
|
test('to test the property `ticker`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|