just gen-client — покрывает links, cashflow-broker, ручные цены, imports/pending, goals/income/rebalance/tax/benchmarks.
47 lines
935 B
Dart
47 lines
935 B
Dart
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
|
|
});
|
|
|
|
});
|
|
}
|