chore(app): сгенерированный Dart-клиент
just gen-client — покрывает links, cashflow-broker, ручные цены, imports/pending, goals/income/rebalance/tax/benchmarks.
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
import 'package:test/test.dart';
|
||||
import 'package:fintracker_api/fintracker_api.dart';
|
||||
|
||||
// tests for GoalOut
|
||||
void main() {
|
||||
final GoalOut? instance = /* GoalOut(...) */ null;
|
||||
// TODO add properties to the entity
|
||||
|
||||
group(GoalOut, () {
|
||||
// bool archived
|
||||
test('to test the property `archived`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String currency
|
||||
test('to test the property `currency`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// int id
|
||||
test('to test the property `id`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// decimal as string
|
||||
// String monthlyContribution
|
||||
test('to test the property `monthlyContribution`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String name
|
||||
test('to test the property `name`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String note
|
||||
test('to test the property `note`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// String scope
|
||||
test('to test the property `scope`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// decimal as string
|
||||
// String targetAmount
|
||||
test('to test the property `targetAmount`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// DateTime targetDate
|
||||
test('to test the property `targetDate`', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user