mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
8847ebeef2
* chore(deps): use mocktail instead of mockito * refactor: move stubs to fixtures/ * fix: fetch assetsortmode based on storeindex * test: validate AlbumSortByOptions provider --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
22 lines
405 B
Dart
22 lines
405 B
Dart
import 'package:immich_mobile/shared/models/user.dart';
|
|
|
|
final class UserStub {
|
|
const UserStub._();
|
|
|
|
static final admin = User(
|
|
id: "admin",
|
|
updatedAt: DateTime(2021),
|
|
email: "admin@test.com",
|
|
name: "admin",
|
|
isAdmin: true,
|
|
);
|
|
|
|
static final user1 = User(
|
|
id: "user1",
|
|
updatedAt: DateTime(2022),
|
|
email: "user1@test.com",
|
|
name: "user1",
|
|
isAdmin: false,
|
|
);
|
|
}
|