server_info_api_test.dart 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. //
  2. // AUTO-GENERATED FILE, DO NOT MODIFY!
  3. //
  4. // @dart=2.12
  5. // ignore_for_file: unused_element, unused_import
  6. // ignore_for_file: always_put_required_named_parameters_first
  7. // ignore_for_file: constant_identifier_names
  8. // ignore_for_file: lines_longer_than_80_chars
  9. import 'package:openapi/api.dart';
  10. import 'package:test/test.dart';
  11. /// tests for ServerInfoApi
  12. void main() {
  13. // final instance = ServerInfoApi();
  14. group('tests for ServerInfoApi', () {
  15. //Future<ServerConfigDto> getServerConfig() async
  16. test('test getServerConfig', () async {
  17. // TODO
  18. });
  19. //Future<ServerFeaturesDto> getServerFeatures() async
  20. test('test getServerFeatures', () async {
  21. // TODO
  22. });
  23. //Future<ServerInfoResponseDto> getServerInfo() async
  24. test('test getServerInfo', () async {
  25. // TODO
  26. });
  27. //Future<ServerVersionResponseDto> getServerVersion() async
  28. test('test getServerVersion', () async {
  29. // TODO
  30. });
  31. //Future<ServerStatsResponseDto> getStats() async
  32. test('test getStats', () async {
  33. // TODO
  34. });
  35. //Future<ServerMediaTypesResponseDto> getSupportedMediaTypes() async
  36. test('test getSupportedMediaTypes', () async {
  37. // TODO
  38. });
  39. //Future<ServerThemeDto> getTheme() async
  40. test('test getTheme', () async {
  41. // TODO
  42. });
  43. //Future<ServerPingResponse> pingServer() async
  44. test('test pingServer', () async {
  45. // TODO
  46. });
  47. });
  48. }