mirror of
https://bitbucket.org/FransoletThomas/tablet-app.git
synced 2025-12-06 08:31:19 +00:00
91 lines
2.2 KiB
Dart
91 lines
2.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<String> sectionDeleteAllForConfiguration(String id) async
|
|
test('test sectionDeleteAllForConfiguration', () 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<SectionDTO> sectionGetDetail(String id) async
|
|
test('test sectionGetDetail', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<List<SectionDTO>> sectionGetFromConfiguration(String id) async
|
|
test('test sectionGetFromConfiguration', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<MapDTO> sectionGetMapDTO() async
|
|
test('test sectionGetMapDTO', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<MenuDTO> sectionGetMenuDTO() async
|
|
test('test sectionGetMenuDTO', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<SliderDTO> sectionGetSliderDTO() async
|
|
test('test sectionGetSliderDTO', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<VideoDTO> sectionGetVideoDTO() async
|
|
test('test sectionGetVideoDTO', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<WebDTO> sectionGetWebDTO() async
|
|
test('test sectionGetWebDTO', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<SectionDTO> sectionUpdate(SectionDTO sectionDTO) async
|
|
test('test sectionUpdate', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<String> sectionUpdateOrder(List<SectionDTO> sectionDTO) async
|
|
test('test sectionUpdateOrder', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|