// // 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 DeviceApi void main() { final instance = DeviceApi(); group('tests for DeviceApi', () { // Create a device // //Future deviceCreate(DeviceDetailDTO deviceDetailDTO) async test('test deviceCreate', () async { // TODO }); // Create devices from provider // //Future> deviceCreateDevicesFromProvider(String userId, String providerId) async test('test deviceCreateDevicesFromProvider', () async { // TODO }); // Delete a device // //Future deviceDelete(String deviceId) async test('test deviceDelete', () async { // TODO }); // Delete all device for a specified // //Future deviceDeleteAllForUser(String userId) async test('test deviceDeleteAllForUser', () async { // TODO }); // Delete devices from provider // //Future deviceDeleteDevicesFromProvider(String userId, String providerId) async test('test deviceDeleteDevicesFromProvider', () async { // TODO }); // Get all devices summary // //Future> deviceGetAll(String userId) async test('test deviceGetAll', () async { // TODO }); // Get a specific device info // //Future deviceGetDetail(String deviceId) async test('test deviceGetDetail', () async { // TODO }); // Get list of devices from a type // //Future> deviceGetDevicesByType(String userId, DeviceType type) async test('test deviceGetDevicesByType', () async { // TODO }); // Get devices from provider // //Future> deviceGetDevicesFromProvider(String userId, String providerId) async test('test deviceGetDevicesFromProvider', () async { // TODO }); // Get all zigbee2Mqtt devices // //Future> deviceGetDevicesFromZigbee2Mqtt(String userId) async test('test deviceGetDevicesFromZigbee2Mqtt', () async { // TODO }); // Update a device // //Future deviceUpdate(String deviceId, DeviceDetailDTO deviceDetailDTO) async test('test deviceUpdate', () async { // TODO }); }); }