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 goalsCreate(GoalCreate goalCreate) async test('test goalsCreate', () async { // TODO }); // Delete // //Future goalsDelete(int goalId) async test('test goalsDelete', () async { // TODO }); // List // //Future> goalsList({ bool includeArchived }) async test('test goalsList', () async { // TODO }); // Patch // //Future goalsPatch(int goalId, GoalPatch goalPatch) async test('test goalsPatch', () async { // TODO }); // Progress // //Future goalsProgress(int goalId) async test('test goalsProgress', () async { // TODO }); }); }