Files
Dmitry ccd06f32f7 chore(app): сгенерированный Dart-клиент
just gen-client — покрывает links, cashflow-broker, ручные цены,
imports/pending, goals/income/rebalance/tax/benchmarks.
2026-09-19 10:46:09 +03:00

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
});
});
}