chore(app): сгенерированный Dart-клиент
just gen-client — покрывает links, cashflow-broker, ручные цены, imports/pending, goals/income/rebalance/tax/benchmarks.
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
import 'package:test/test.dart';
|
||||
import 'package:fintracker_api/fintracker_api.dart';
|
||||
|
||||
|
||||
/// tests for GoalsApi
|
||||
void main() {
|
||||
final instance = FintrackerApi().getGoalsApi();
|
||||
|
||||
group(GoalsApi, () {
|
||||
// Create
|
||||
//
|
||||
//Future<GoalOut> goalsCreate(GoalCreate goalCreate) async
|
||||
test('test goalsCreate', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// Delete
|
||||
//
|
||||
//Future goalsDelete(int goalId) async
|
||||
test('test goalsDelete', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// List
|
||||
//
|
||||
//Future<List<GoalOut>> goalsList({ bool includeArchived }) async
|
||||
test('test goalsList', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// Patch
|
||||
//
|
||||
//Future<GoalOut> goalsPatch(int goalId, GoalPatch goalPatch) async
|
||||
test('test goalsPatch', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// Progress
|
||||
//
|
||||
//Future<GoalProgressOut> goalsProgress(int goalId) async
|
||||
test('test goalsProgress', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user