import 'package:test/test.dart'; import 'package:fintracker_api/fintracker_api.dart'; /// tests for BenchmarksApi void main() { final instance = FintrackerApi().getBenchmarksApi(); group(BenchmarksApi, () { // Benchmarks // // The portfolio's TWR beside each benchmark's, on the same grid of days. `days_skipped` is returned on both sides and is not cosmetic: a non-zero value on either means the two chains did not cover the same days, and the difference is then an approximation of an excess return rather than one. // //Future benchmarksBenchmarks({ String scope, List period }) async test('test benchmarksBenchmarks', () async { // TODO }); // Create // //Future benchmarksCreate(BenchmarkCreate benchmarkCreate) async test('test benchmarksCreate', () async { // TODO }); // Delete // //Future benchmarksDelete(int benchmarkId) async test('test benchmarksDelete', () async { // TODO }); // List // // Every benchmark, defaults first — the order the comparison block shows them in. // //Future> benchmarksList() async test('test benchmarksList', () async { // TODO }); // Patch // //Future benchmarksPatch(int benchmarkId, BenchmarkPatch benchmarkPatch) async test('test benchmarksPatch', () async { // TODO }); }); }