Create FakeAppErrorStateService

This commit is contained in:
Benoit Marty 2025-08-13 12:32:47 +02:00
parent feb65aa987
commit 9ef0bf35da
2 changed files with 56 additions and 0 deletions

View file

@ -0,0 +1,20 @@
/*
* Copyright 2025 New Vector Ltd.
*
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE files in the repository root for full details.
*/
plugins {
id("io.element.android-library")
}
android {
namespace = "io.element.android.services.apperror.test"
}
dependencies {
implementation(libs.coroutines.core)
implementation(projects.services.apperror.api)
implementation(projects.tests.testutils)
}