exif_response_dto_test.dart 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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 ExifResponseDto
  12. void main() {
  13. // final instance = ExifResponseDto();
  14. group('test ExifResponseDto', () {
  15. // int fileSizeInByte
  16. test('to test the property `fileSizeInByte`', () async {
  17. // TODO
  18. });
  19. // String make
  20. test('to test the property `make`', () async {
  21. // TODO
  22. });
  23. // String model
  24. test('to test the property `model`', () async {
  25. // TODO
  26. });
  27. // String imageName
  28. test('to test the property `imageName`', () async {
  29. // TODO
  30. });
  31. // num exifImageWidth
  32. test('to test the property `exifImageWidth`', () async {
  33. // TODO
  34. });
  35. // num exifImageHeight
  36. test('to test the property `exifImageHeight`', () async {
  37. // TODO
  38. });
  39. // String orientation
  40. test('to test the property `orientation`', () async {
  41. // TODO
  42. });
  43. // DateTime dateTimeOriginal
  44. test('to test the property `dateTimeOriginal`', () async {
  45. // TODO
  46. });
  47. // DateTime modifyDate
  48. test('to test the property `modifyDate`', () async {
  49. // TODO
  50. });
  51. // String lensModel
  52. test('to test the property `lensModel`', () async {
  53. // TODO
  54. });
  55. // num fNumber
  56. test('to test the property `fNumber`', () async {
  57. // TODO
  58. });
  59. // num focalLength
  60. test('to test the property `focalLength`', () async {
  61. // TODO
  62. });
  63. // num iso
  64. test('to test the property `iso`', () async {
  65. // TODO
  66. });
  67. // String exposureTime
  68. test('to test the property `exposureTime`', () async {
  69. // TODO
  70. });
  71. // num latitude
  72. test('to test the property `latitude`', () async {
  73. // TODO
  74. });
  75. // num longitude
  76. test('to test the property `longitude`', () async {
  77. // TODO
  78. });
  79. // String city
  80. test('to test the property `city`', () async {
  81. // TODO
  82. });
  83. // String state
  84. test('to test the property `state`', () async {
  85. // TODO
  86. });
  87. // String country
  88. test('to test the property `country`', () async {
  89. // TODO
  90. });
  91. });
  92. }