forked from Cutlery/immich
		
	* feat: disable activity * fix: disable reactions * fix: tests * fix: tests * fix: tests * pr feedback * pr feedback * chore: styling & wording * refactor component --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
		
			
				
	
	
		
			108 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
		
			Generated
		
	
	
			
		
		
	
	
			108 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
		
			Generated
		
	
	
//
 | 
						|
// AUTO-GENERATED FILE, DO NOT MODIFY!
 | 
						|
//
 | 
						|
// @dart=2.12
 | 
						|
 | 
						|
// ignore_for_file: unused_element, unused_import
 | 
						|
// ignore_for_file: always_put_required_named_parameters_first
 | 
						|
// ignore_for_file: constant_identifier_names
 | 
						|
// ignore_for_file: lines_longer_than_80_chars
 | 
						|
 | 
						|
import 'package:openapi/api.dart';
 | 
						|
import 'package:test/test.dart';
 | 
						|
 | 
						|
// tests for AlbumResponseDto
 | 
						|
void main() {
 | 
						|
  // final instance = AlbumResponseDto();
 | 
						|
 | 
						|
  group('test AlbumResponseDto', () {
 | 
						|
    // String albumName
 | 
						|
    test('to test the property `albumName`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // String albumThumbnailAssetId
 | 
						|
    test('to test the property `albumThumbnailAssetId`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // int assetCount
 | 
						|
    test('to test the property `assetCount`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // List<AssetResponseDto> assets (default value: const [])
 | 
						|
    test('to test the property `assets`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // DateTime createdAt
 | 
						|
    test('to test the property `createdAt`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // String description
 | 
						|
    test('to test the property `description`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // DateTime endDate
 | 
						|
    test('to test the property `endDate`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // bool hasSharedLink
 | 
						|
    test('to test the property `hasSharedLink`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // String id
 | 
						|
    test('to test the property `id`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // bool isActivityEnabled
 | 
						|
    test('to test the property `isActivityEnabled`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // DateTime lastModifiedAssetTimestamp
 | 
						|
    test('to test the property `lastModifiedAssetTimestamp`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // UserResponseDto owner
 | 
						|
    test('to test the property `owner`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // String ownerId
 | 
						|
    test('to test the property `ownerId`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // bool shared
 | 
						|
    test('to test the property `shared`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // List<UserResponseDto> sharedUsers (default value: const [])
 | 
						|
    test('to test the property `sharedUsers`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // DateTime startDate
 | 
						|
    test('to test the property `startDate`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
    // DateTime updatedAt
 | 
						|
    test('to test the property `updatedAt`', () async {
 | 
						|
      // TODO
 | 
						|
    });
 | 
						|
 | 
						|
 | 
						|
  });
 | 
						|
 | 
						|
}
 |