mirror of
https://bitbucket.org/myhomie/myhomie_app.git
synced 2025-12-06 09:01:20 +00:00
87 lines
1.6 KiB
Dart
87 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 Widget
|
|
void main() {
|
|
final instance = Widget();
|
|
|
|
group('test Widget', () {
|
|
// String id
|
|
test('to test the property `id`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String name
|
|
test('to test the property `name`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String displayName
|
|
test('to test the property `displayName`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String type
|
|
test('to test the property `type`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// bool activated
|
|
test('to test the property `activated`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String form
|
|
test('to test the property `form`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String font
|
|
test('to test the property `font`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String color
|
|
test('to test the property `color`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// String size
|
|
test('to test the property `size`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int width
|
|
test('to test the property `width`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int height
|
|
test('to test the property `height`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int positionX
|
|
test('to test the property `positionX`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int positionY
|
|
test('to test the property `positionY`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|