mirror of
https://bitbucket.org/myhomie/myhomie_app.git
synced 2025-12-06 09:01:20 +00:00
48 lines
959 B
Dart
48 lines
959 B
Dart
//
|
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
//
|
|
// @dart=2.12
|
|
|
|
// ignore_for_file: unused_element, unused_import
|
|
// ignore_for_file: always_put_required_named_parameters_first
|
|
// ignore_for_file: constant_identifier_names
|
|
// ignore_for_file: lines_longer_than_80_chars
|
|
|
|
import 'package:mycore_api/api.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
// tests for Trigger
|
|
void main() {
|
|
// final instance = Trigger();
|
|
|
|
group('test Trigger', () {
|
|
// String providerId
|
|
test('to test the property `providerId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String deviceId
|
|
test('to test the property `deviceId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String stateName
|
|
test('to test the property `stateName`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String stateValue
|
|
test('to test the property `stateValue`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// TriggerType type
|
|
test('to test the property `type`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|