just gen-client — покрывает links, cashflow-broker, ручные цены, imports/pending, goals/income/rebalance/tax/benchmarks.
59 lines
1.1 KiB
Dart
59 lines
1.1 KiB
Dart
import 'package:test/test.dart';
|
|
import 'package:fintracker_api/fintracker_api.dart';
|
|
|
|
// tests for LinkOut
|
|
void main() {
|
|
final LinkOut? instance = /* LinkOut(...) */ null;
|
|
// TODO add properties to the entity
|
|
|
|
group(LinkOut, () {
|
|
// decimal as string
|
|
// String amountDelta
|
|
test('to test the property `amountDelta`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int cashTxnId
|
|
test('to test the property `cashTxnId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// decimal as string
|
|
// String confidence
|
|
test('to test the property `confidence`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String currency
|
|
test('to test the property `currency`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int dayGap
|
|
test('to test the property `dayGap`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int eventId
|
|
test('to test the property `eventId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int id
|
|
test('to test the property `id`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String kind
|
|
test('to test the property `kind`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String note
|
|
test('to test the property `note`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|