manager-app/manager_api_new/test/envelope_test.dart
2025-07-17 12:11:59 +02:00

80 lines
1.6 KiB
Dart

//
// AUTO-GENERATED FILE, DO NOT MODIFY!
//
// @dart=2.18
// 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:manager_api_new/api.dart';
import 'package:test/test.dart';
// tests for Envelope
void main() {
// final instance = Envelope();
group('test Envelope', () {
// bool isNull
test('to test the property `isNull`', () async {
// TODO
});
// double width
test('to test the property `width`', () async {
// TODO
});
// double height
test('to test the property `height`', () async {
// TODO
});
// double diameter
test('to test the property `diameter`', () async {
// TODO
});
// double minX
test('to test the property `minX`', () async {
// TODO
});
// double maxX
test('to test the property `maxX`', () async {
// TODO
});
// double minY
test('to test the property `minY`', () async {
// TODO
});
// double maxY
test('to test the property `maxY`', () async {
// TODO
});
// double area
test('to test the property `area`', () async {
// TODO
});
// double minExtent
test('to test the property `minExtent`', () async {
// TODO
});
// double maxExtent
test('to test the property `maxExtent`', () async {
// TODO
});
// PointAllOfCoordinate centre
test('to test the property `centre`', () async {
// TODO
});
});
}