api_key_api_test.dart 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 APIKeyApi
  12. void main() {
  13. // final instance = APIKeyApi();
  14. group('tests for APIKeyApi', () {
  15. //Future<APIKeyCreateResponseDto> createKey(APIKeyCreateDto aPIKeyCreateDto) async
  16. test('test createKey', () async {
  17. // TODO
  18. });
  19. //Future deleteKey(num id) async
  20. test('test deleteKey', () async {
  21. // TODO
  22. });
  23. //Future<APIKeyResponseDto> getKey(num id) async
  24. test('test getKey', () async {
  25. // TODO
  26. });
  27. //Future<List<APIKeyResponseDto>> getKeys() async
  28. test('test getKeys', () async {
  29. // TODO
  30. });
  31. //Future<APIKeyResponseDto> updateKey(num id, APIKeyUpdateDto aPIKeyUpdateDto) async
  32. test('test updateKey', () async {
  33. // TODO
  34. });
  35. });
  36. }