55 lines
1.4 KiB
Dart
55 lines
1.4 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:manager_api_new/api.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
/// tests for ResourceApi
|
|
void main() {
|
|
// final instance = ResourceApi();
|
|
|
|
group('tests for ResourceApi', () {
|
|
//Future<ResourceDTO> resourceCreate(ResourceDTO resourceDTO) async
|
|
test('test resourceCreate', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<String> resourceDelete(String id) async
|
|
test('test resourceDelete', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<List<ResourceDTO>> resourceGet({ String instanceId, List<ResourceType> types }) async
|
|
test('test resourceGet', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<ResourceDTO> resourceGetDetail(String id) async
|
|
test('test resourceGetDetail', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<MultipartFile> resourceShow(String id) async
|
|
test('test resourceShow', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<ResourceDTO> resourceUpdate(ResourceDTO resourceDTO) async
|
|
test('test resourceUpdate', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<String> resourceUpload({ String label, String type, String instanceId }) async
|
|
test('test resourceUpload', () async {
|
|
// TODO
|
|
});
|
|
});
|
|
}
|