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

67 lines
1.4 KiB
Dart

import 'package:test/test.dart';
import 'package:fintracker_api/fintracker_api.dart';
// tests for GoalProgressOut
void main() {
final GoalProgressOut? instance = /* GoalProgressOut(...) */ null;
// TODO add properties to the entity
group(GoalProgressOut, () {
// DateTime asOf
test('to test the property `asOf`', () async {
// TODO
});
// decimal as string
// String assumedRate
test('to test the property `assumedRate`', () async {
// TODO
});
// String basis
test('to test the property `basis`', () async {
// TODO
});
// decimal as string
// String currentValueRub
test('to test the property `currentValueRub`', () async {
// TODO
});
// int goalId
test('to test the property `goalId`', () async {
// TODO
});
// decimal as string
// String monthlyNeededRub
test('to test the property `monthlyNeededRub`', () async {
// TODO
});
// bool onTrack
test('to test the property `onTrack`', () async {
// TODO
});
// decimal as string
// String progress
test('to test the property `progress`', () async {
// TODO
});
// DateTime projectedDate
test('to test the property `projectedDate`', () async {
// TODO
});
// decimal as string
// String targetAmountRub
test('to test the property `targetAmountRub`', () async {
// TODO
});
});
}