refactor: mobile tag and download actions (#29948)

refactor: mobile tag and download action

Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
This commit is contained in:
shenlong 2026-08-01 08:06:43 +05:30 committed by GitHub
parent 1fa985babb
commit bc84054ccc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 313 additions and 206 deletions

View file

@ -17,8 +17,6 @@ void main() {
late MockAssetApiRepository assetApiRepository;
late MockRemoteAssetRepository remoteAssetRepository;
late MockDownloadRepository downloadRepository;
late MockTagService tagService;
late Drift db;
@ -39,10 +37,8 @@ void main() {
setUp(() {
assetApiRepository = MockAssetApiRepository();
remoteAssetRepository = MockRemoteAssetRepository();
downloadRepository = MockDownloadRepository();
tagService = MockTagService();
sut = ActionService(assetApiRepository, remoteAssetRepository, downloadRepository, tagService);
sut = ActionService(assetApiRepository, remoteAssetRepository);
});
tearDown(() async {