51 lines
1.2 KiB
Dart
51 lines
1.2 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:managerapi/api.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
|
|
/// tests for RessourceApi
|
|
void main() {
|
|
final instance = RessourceApi();
|
|
|
|
group('tests for RessourceApi', () {
|
|
//Future<RessourceDetailDTO> ressourceCreate(RessourceDetailDTO ressourceDetailDTO) async
|
|
test('test ressourceCreate', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<String> ressourceDelete(String id) async
|
|
test('test ressourceDelete', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<List<RessourceDTO>> ressourceGet() async
|
|
test('test ressourceGet', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<RessourceDetailDTO> ressourceGetDetail(String id) async
|
|
test('test ressourceGetDetail', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<MultipartFile> ressourceShow(String id) async
|
|
test('test ressourceShow', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<RessourceDetailDTO> ressourceUpdate(RessourceDetailDTO ressourceDetailDTO) async
|
|
test('test ressourceUpdate', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|