// // AUTO-GENERATED FILE, DO NOT MODIFY! // // @dart=2.0 // ignore_for_file: unused_element, unused_import // ignore_for_file: always_put_required_named_parameters_first // ignore_for_file: lines_longer_than_80_chars import 'package:mycoreapi/api.dart'; import 'package:test/test.dart'; /// tests for AutomationApi void main() { final instance = AutomationApi(); group('tests for AutomationApi', () { //Future automationCreate(AutomationCreateOrUpdateDetailDTO automationCreateOrUpdateDetailDTO) async test('test automationCreate', () async { // TODO }); // Delete an automation // //Future automationDelete(String automationId) async test('test automationDelete', () async { // TODO }); // Delete all automation for a specified // //Future automationDeleteAllForUser(String userId) async test('test automationDeleteAllForUser', () async { // TODO }); // Get all automations for the specified user // //Future> automationGetAll(String userId) async test('test automationGetAll', () async { // TODO }); // Get detail info of a specified automation // //Future automationGetDetail(String automationId) async test('test automationGetDetail', () async { // TODO }); // Update an automation // //Future automationUpdate(AutomationCreateOrUpdateDetailDTO automationCreateOrUpdateDetailDTO) async test('test automationUpdate', () async { // TODO }); }); }