mirror of
https://github.com/immich-app/immich.git
synced 2024-12-04 10:34:56 +02:00
b8c5363a15
* move timeline operations to their own controller/service * chore: open api * move e2e tests
32 lines
1.1 KiB
Dart
Generated
32 lines
1.1 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 TimelineApi
|
|
void main() {
|
|
// final instance = TimelineApi();
|
|
|
|
group('tests for TimelineApi', () {
|
|
//Future<List<AssetResponseDto>> getTimeBucket(TimeBucketSize size, String timeBucket, { String albumId, bool isArchived, bool isFavorite, bool isTrashed, String key, AssetOrder order, String personId, String userId, bool withPartners, bool withStacked }) async
|
|
test('test getTimeBucket', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<List<TimeBucketResponseDto>> getTimeBuckets(TimeBucketSize size, { String albumId, bool isArchived, bool isFavorite, bool isTrashed, String key, AssetOrder order, String personId, String userId, bool withPartners, bool withStacked }) async
|
|
test('test getTimeBuckets', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|