import 'package:test/test.dart'; import 'package:fintracker_api/fintracker_api.dart'; /// tests for CashflowApi void main() { final instance = FintrackerApi().getCashflowApi(); group(CashflowApi, () { // Monthly // // The last `months` months, oldest first. // //Future> cashflowMonthly({ int months }) async test('test cashflowMonthly', () async { // TODO }); // Runway // // How many months the liquid reserve covers; null before the first refresh. // //Future cashflowRunway() async test('test cashflowRunway', () async { // TODO }); // Spending // // Expenses of one month by category, largest first. // //Future> cashflowSpending({ String month }) async test('test cashflowSpending', () async { // TODO }); }); }