mirror of
https://github.com/gosticks/open-project-flutter-api.git
synced 2025-10-16 11:55:34 +00:00
59 lines
1.5 KiB
Dart
59 lines
1.5 KiB
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:openapi/api.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
// tests for RelationModelLinksSelf
|
|
void main() {
|
|
// final instance = RelationModelLinksSelf();
|
|
|
|
group('test RelationModelLinksSelf', () {
|
|
// URL to the referenced resource (might be relative)
|
|
// String href
|
|
test('to test the property `href`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Representative label for the resource
|
|
// String title
|
|
test('to test the property `title`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// If true the href contains parts that need to be replaced by the client
|
|
// bool templated (default value: false)
|
|
test('to test the property `templated`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// The HTTP verb to use when requesting the resource
|
|
// String method (default value: 'GET')
|
|
test('to test the property `method`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// The payload to send in the request to achieve the desired result
|
|
// Object payload
|
|
test('to test the property `payload`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// An optional unique identifier to the link object
|
|
// String identifier
|
|
test('to test the property `identifier`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|