immich/mobile/openapi/test/system_config_api_test.dart

57 lines
1.4 KiB
Dart

//
// AUTO-GENERATED FILE, DO NOT MODIFY!
//
// @dart=2.18
// 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 SystemConfigApi
void main() {
// final instance = SystemConfigApi();
group('tests for SystemConfigApi', () {
// Get system configuration
//
// Retrieve the current system configuration.
//
//Future<SystemConfigDto> getConfig() async
test('test getConfig', () async {
// TODO
});
// Get system configuration defaults
//
// Retrieve the default values for the system configuration.
//
//Future<SystemConfigDto> getConfigDefaults() async
test('test getConfigDefaults', () async {
// TODO
});
// Get storage template options
//
// Retrieve exemplary storage template options.
//
//Future<SystemConfigTemplateStorageOptionDto> getStorageTemplateOptions() async
test('test getStorageTemplateOptions', () async {
// TODO
});
// Update system configuration
//
// Update the system configuration with a new system configuration.
//
//Future<SystemConfigDto> updateConfig(SystemConfigDto systemConfigDto) async
test('test updateConfig', () async {
// TODO
});
});
}