import 'package:test/test.dart'; import 'package:fintracker_api/fintracker_api.dart'; /// tests for TransactionsApi void main() { final instance = FintrackerApi().getTransactionsApi(); group(TransactionsApi, () { // List // // One page of transactions, newest first, with RUB amounts at each own date's rate. // //Future transactionsList({ DateTime from, DateTime to, int accountId, int categoryId, FlowType flowType, String q, bool includeDeleted, int page, int pageSize }) async test('test transactionsList', () async { // TODO }); }); }