mirror of
https://github.com/immich-app/immich.git
synced 2024-12-29 11:24:37 +02:00
fa0913120d
* feat: search peoples * fix: responsive design * use existing count * generate sql file * fix: tests * remove visible people * fix: merge, hide... * use component * fix: linter * chore: regenerate api * fix: change name when searching for a face * save search * remove duplicate * use enums for query parameters * fix: increase to 20 for the local search * use constants * simplify * fix: number of people more visible * fix: merge * fix: search * fix: loading spinner position * pr feedback
33 lines
706 B
Dart
Generated
33 lines
706 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 PeopleResponseDto
|
|
void main() {
|
|
// final instance = PeopleResponseDto();
|
|
|
|
group('test PeopleResponseDto', () {
|
|
// List<PersonResponseDto> people (default value: const [])
|
|
test('to test the property `people`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// int total
|
|
test('to test the property `total`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|