user_api_test.dart 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. //Future<CreateProfileImageResponseDto> createProfileImage(MultipartFile file) async
  16. test('test createProfileImage', () async {
  17. // TODO
  18. });
  19. //Future<UserResponseDto> createUser(CreateUserDto createUserDto) async
  20. test('test createUser', () async {
  21. // TODO
  22. });
  23. //Future deleteProfileImage() async
  24. test('test deleteProfileImage', () async {
  25. // TODO
  26. });
  27. //Future<UserResponseDto> deleteUser(String id) async
  28. test('test deleteUser', () async {
  29. // TODO
  30. });
  31. //Future<List<UserResponseDto>> getAllUsers(bool isAll) async
  32. test('test getAllUsers', () async {
  33. // TODO
  34. });
  35. //Future<UserResponseDto> getMyUserInfo() async
  36. test('test getMyUserInfo', () async {
  37. // TODO
  38. });
  39. //Future<Object> getProfileImage(String id) async
  40. test('test getProfileImage', () async {
  41. // TODO
  42. });
  43. //Future<UserResponseDto> getUserById(String id) async
  44. test('test getUserById', () async {
  45. // TODO
  46. });
  47. //Future<UserResponseDto> restoreUser(String id) async
  48. test('test restoreUser', () async {
  49. // TODO
  50. });
  51. //Future<UserResponseDto> updateUser(UpdateUserDto updateUserDto) async
  52. test('test updateUser', () async {
  53. // TODO
  54. });
  55. });
  56. }