mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 09:41:19 +00:00
61 lines
1.6 KiB
Dart
61 lines
1.6 KiB
Dart
//
|
|
// 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<AutomationDTO> automationCreate(AutomationCreateOrUpdateDetailDTO automationCreateOrUpdateDetailDTO) async
|
|
test('test automationCreate', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Delete an automation
|
|
//
|
|
//Future<MultipartFile> automationDelete(String automationId) async
|
|
test('test automationDelete', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Delete all automation for a specified
|
|
//
|
|
//Future<MultipartFile> automationDeleteAllForUser(String userId) async
|
|
test('test automationDeleteAllForUser', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Get all automations for the specified user
|
|
//
|
|
//Future<List<RoomSummaryDTO>> automationGetAll(String userId) async
|
|
test('test automationGetAll', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Get detail info of a specified automation
|
|
//
|
|
//Future<AutomationDetailDTO> automationGetDetail(String automationId) async
|
|
test('test automationGetDetail', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Update an automation
|
|
//
|
|
//Future<AutomationCreateOrUpdateDetailDTO> automationUpdate(AutomationCreateOrUpdateDetailDTO automationCreateOrUpdateDetailDTO) async
|
|
test('test automationUpdate', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|