import 'package:test/test.dart'; import 'package:fintracker_api/fintracker_api.dart'; /// tests for RulesApi void main() { final instance = FintrackerApi().getRulesApi(); group(RulesApi, () { // Apply // // Re-run the whole metric refresh so edited rules take effect everywhere at once. // //Future rulesApply() async test('test rulesApply', () async { // TODO }); // Create // //Future rulesCreate(RuleCreate ruleCreate) async test('test rulesCreate', () async { // TODO }); // Delete // //Future rulesDelete(int ruleId) async test('test rulesDelete', () async { // TODO }); // List // //Future> rulesList() async test('test rulesList', () async { // TODO }); // Patch // //Future rulesPatch(int ruleId, RulePatch rulePatch) async test('test rulesPatch', () async { // TODO }); // Stale // // Enabled rules that matched nothing in the latest refresh: the payee was renamed, or the transaction was re-categorised in ZenMoney. // //Future> rulesStale() async test('test rulesStale', () async { // TODO }); }); }