mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 17:51:20 +00:00
132 lines
2.8 KiB
Dart
132 lines
2.8 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 UserInfo
|
|
void main() {
|
|
final instance = UserInfo();
|
|
|
|
group('test UserInfo', () {
|
|
// String id
|
|
test('to test the property `id`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String role
|
|
test('to test the property `role`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String email
|
|
test('to test the property `email`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String password
|
|
test('to test the property `password`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String firstName
|
|
test('to test the property `firstName`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String lastName
|
|
test('to test the property `lastName`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String token
|
|
test('to test the property `token`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime birthday
|
|
test('to test the property `birthday`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// DateTime dateCreation
|
|
test('to test the property `dateCreation`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String address
|
|
test('to test the property `address`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String city
|
|
test('to test the property `city`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String state
|
|
test('to test the property `state`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String country
|
|
test('to test the property `country`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String language
|
|
test('to test the property `language`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String timeZone
|
|
test('to test the property `timeZone`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int postalCode
|
|
test('to test the property `postalCode`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<Automation> automations (default value: const [])
|
|
test('to test the property `automations`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<Device> devices (default value: const [])
|
|
test('to test the property `devices`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<Provider> providers (default value: const [])
|
|
test('to test the property `providers`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<Group> groups (default value: const [])
|
|
test('to test the property `groups`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<ScreenConfiguration> screenConfigurationIds (default value: const [])
|
|
test('to test the property `screenConfigurationIds`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<ScreenDevice> deviceIds (default value: const [])
|
|
test('to test the property `deviceIds`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|