shared_link_response_dto_test.dart 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 SharedLinkResponseDto
  12. void main() {
  13. // final instance = SharedLinkResponseDto();
  14. group('test SharedLinkResponseDto', () {
  15. // SharedLinkType type
  16. test('to test the property `type`', () async {
  17. // TODO
  18. });
  19. // String id
  20. test('to test the property `id`', () async {
  21. // TODO
  22. });
  23. // String description
  24. test('to test the property `description`', () async {
  25. // TODO
  26. });
  27. // String userId
  28. test('to test the property `userId`', () async {
  29. // TODO
  30. });
  31. // String key
  32. test('to test the property `key`', () async {
  33. // TODO
  34. });
  35. // DateTime createdAt
  36. test('to test the property `createdAt`', () async {
  37. // TODO
  38. });
  39. // DateTime expiresAt
  40. test('to test the property `expiresAt`', () async {
  41. // TODO
  42. });
  43. // List<AssetResponseDto> assets (default value: const [])
  44. test('to test the property `assets`', () async {
  45. // TODO
  46. });
  47. // AlbumResponseDto album
  48. test('to test the property `album`', () async {
  49. // TODO
  50. });
  51. // bool allowUpload
  52. test('to test the property `allowUpload`', () async {
  53. // TODO
  54. });
  55. // bool allowDownload
  56. test('to test the property `allowDownload`', () async {
  57. // TODO
  58. });
  59. // bool showExif
  60. test('to test the property `showExif`', () async {
  61. // TODO
  62. });
  63. });
  64. }