manager-app/manager_api/test/section_api_test.dart
2021-04-07 17:51:47 +02:00

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 SectionApi
void main() {
final instance = SectionApi();
group('tests for SectionApi', () {
//Future<SectionDTO> sectionCreate(SectionDTO sectionDTO) async
test('test sectionCreate', () async {
// TODO
});
//Future<String> sectionDelete(String id) async
test('test sectionDelete', () async {
// TODO
});
//Future<List<SectionDTO>> sectionGet() async
test('test sectionGet', () async {
// TODO
});
//Future<List<Object>> sectionGetAllSectionSubSections(String id) async
test('test sectionGetAllSectionSubSections', () async {
// TODO
});
//Future<Object> sectionGetDetail(String id) async
test('test sectionGetDetail', () async {
// TODO
});
//Future<SectionDTO> sectionUpdate(SectionDTO sectionDTO) async
test('test sectionUpdate', () async {
// TODO
});
});
}