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