just gen-client — покрывает links, cashflow-broker, ручные цены, imports/pending, goals/income/rebalance/tax/benchmarks.
50 lines
1.0 KiB
Dart
50 lines
1.0 KiB
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for HistoryRow
|
|
void main() {
|
|
final HistoryRow? instance = /* HistoryRow(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(HistoryRow, () {
|
|
// 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 currency
|
|
test('to test the property `currency`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String kind
|
|
test('to test the property `kind`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime month
|
|
test('to test the property `month`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int paymentCount
|
|
test('to test the property `paymentCount`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String taxWithheld
|
|
test('to test the property `taxWithheld`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|