user_api_test.dart 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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 UserApi
  12. void main() {
  13. // final instance = UserApi();
  14. group('tests for UserApi', () {
  15. //
  16. //
  17. //Future<CreateProfileImageResponseDto> createProfileImage(MultipartFile file) async
  18. test('test createProfileImage', () async {
  19. // TODO
  20. });
  21. //
  22. //
  23. //Future<UserResponseDto> createUser(CreateUserDto createUserDto) async
  24. test('test createUser', () async {
  25. // TODO
  26. });
  27. //
  28. //
  29. //Future<UserResponseDto> deleteUser(String userId) async
  30. test('test deleteUser', () async {
  31. // TODO
  32. });
  33. //
  34. //
  35. //Future<List<UserResponseDto>> getAllUsers(bool isAll) async
  36. test('test getAllUsers', () async {
  37. // TODO
  38. });
  39. //
  40. //
  41. //Future<UserResponseDto> getMyUserInfo() async
  42. test('test getMyUserInfo', () async {
  43. // TODO
  44. });
  45. //
  46. //
  47. //Future<Object> getProfileImage(String userId) async
  48. test('test getProfileImage', () async {
  49. // TODO
  50. });
  51. //
  52. //
  53. //Future<UserResponseDto> getUserById(String userId) async
  54. test('test getUserById', () async {
  55. // TODO
  56. });
  57. //
  58. //
  59. //Future<UserCountResponseDto> getUserCount({ bool admin }) async
  60. test('test getUserCount', () async {
  61. // TODO
  62. });
  63. //
  64. //
  65. //Future<UserResponseDto> restoreUser(String userId) async
  66. test('test restoreUser', () async {
  67. // TODO
  68. });
  69. //
  70. //
  71. //Future<UserResponseDto> updateUser(UpdateUserDto updateUserDto) async
  72. test('test updateUser', () async {
  73. // TODO
  74. });
  75. });
  76. }