mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
7947f4db4c
* add migration * verify running migration populate new value * implemented service * generate api * FE works * FR Works * fix test * fix test fixture * fix test * fix test * consolidate api * fix test * added test * pr feedback * refactor * click ont humbnail to show feature selection as well
35 lines
758 B
Dart
Generated
35 lines
758 B
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 PersonUpdateDto
|
|
void main() {
|
|
// final instance = PersonUpdateDto();
|
|
|
|
group('test PersonUpdateDto', () {
|
|
// Person name.
|
|
// String name
|
|
test('to test the property `name`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Asset is used to get the feature face thumbnail.
|
|
// String featureFaceAssetId
|
|
test('to test the property `featureFaceAssetId`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|