import 'package:test/test.dart'; import 'package:fintracker_api/fintracker_api.dart'; /// tests for NetworthApi void main() { final instance = FintrackerApi().getNetworthApi(); group(NetworthApi, () { // Breakdown // // The latest day's buckets, plus every account's current balance native and in RUB. // //Future networthBreakdown() async test('test networthBreakdown', () async { // TODO }); // Series // // Daily net worth; defaults to the last 365 days. // //Future> networthSeries({ DateTime from, DateTime to }) async test('test networthSeries', () async { // TODO }); }); }