mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 01:31:19 +00:00
152 lines
3.2 KiB
Dart
152 lines
3.2 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 Device
|
|
void main() {
|
|
final instance = Device();
|
|
|
|
group('test Device', () {
|
|
// String id
|
|
test('to test the property `id`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String userId
|
|
test('to test the property `userId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String name
|
|
test('to test the property `name`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String description
|
|
test('to test the property `description`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String model
|
|
test('to test the property `model`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int port
|
|
test('to test the property `port`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String firmwareVersion
|
|
test('to test the property `firmwareVersion`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String hardwareVersion
|
|
test('to test the property `hardwareVersion`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// bool status
|
|
test('to test the property `status`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DeviceType type
|
|
test('to test the property `type`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// ConnectionStatus connectionStatus
|
|
test('to test the property `connectionStatus`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String locationId
|
|
test('to test the property `locationId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<MeansOfCommunication> meansOfCommunications (default value: const [])
|
|
test('to test the property `meansOfCommunications`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime createdDate
|
|
test('to test the property `createdDate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime updatedDate
|
|
test('to test the property `updatedDate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String lastState
|
|
test('to test the property `lastState`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime lastStateDate
|
|
test('to test the property `lastStateDate`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String ipAddress
|
|
test('to test the property `ipAddress`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String serviceIdentification
|
|
test('to test the property `serviceIdentification`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// bool battery
|
|
test('to test the property `battery`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int batteryStatus
|
|
test('to test the property `batteryStatus`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String providerId
|
|
test('to test the property `providerId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String manufacturerName
|
|
test('to test the property `manufacturerName`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<String> groupIds (default value: const [])
|
|
test('to test the property `groupIds`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Map<String, Object> properties (default value: const {})
|
|
test('to test the property `properties`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<String> supportedOperations (default value: const [])
|
|
test('to test the property `supportedOperations`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|