o_auth_api_test.dart 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 OAuthApi
  12. void main() {
  13. // final instance = OAuthApi();
  14. group('tests for OAuthApi', () {
  15. //
  16. //
  17. //Future<LoginResponseDto> callback(OAuthCallbackDto oAuthCallbackDto) async
  18. test('test callback', () async {
  19. // TODO
  20. });
  21. //
  22. //
  23. //Future<OAuthConfigResponseDto> generateConfig(OAuthConfigDto oAuthConfigDto) async
  24. test('test generateConfig', () async {
  25. // TODO
  26. });
  27. //
  28. //
  29. //Future<UserResponseDto> link(OAuthCallbackDto oAuthCallbackDto) async
  30. test('test link', () async {
  31. // TODO
  32. });
  33. //
  34. //
  35. //Future mobileRedirect() async
  36. test('test mobileRedirect', () async {
  37. // TODO
  38. });
  39. //
  40. //
  41. //Future<UserResponseDto> unlink() async
  42. test('test unlink', () async {
  43. // TODO
  44. });
  45. });
  46. }