From e49afafa52279d5e2a07c499fa5e5a342c519144 Mon Sep 17 00:00:00 2001 From: yon Date: Mon, 18 Nov 2024 20:46:47 +0100 Subject: [PATCH] chore: Remove ExampleUnitTest and update repository namespace - Removed `ExampleUnitTest` from the `reminder` module, likely as it was a placeholder test. - Updated the namespace for the `repository` module to `city.zouitel.quicknote`, likely for better package organization. --- core/network/repository/build.gradle.kts | 3 +++ .../city/zouitel/reminder/ExampleUnitTest.kt | 17 ----------------- 2 files changed, 3 insertions(+), 17 deletions(-) delete mode 100644 ui/features/reminder/src/test/java/city/zouitel/reminder/ExampleUnitTest.kt diff --git a/core/network/repository/build.gradle.kts b/core/network/repository/build.gradle.kts index 51b7b8a8..7556fa51 100644 --- a/core/network/repository/build.gradle.kts +++ b/core/network/repository/build.gradle.kts @@ -1,4 +1,7 @@ plugins { alias(libs.plugins.cityzouitel.androidLibrary) +} +android { + namespace = "city.zouitel.quicknote" } \ No newline at end of file diff --git a/ui/features/reminder/src/test/java/city/zouitel/reminder/ExampleUnitTest.kt b/ui/features/reminder/src/test/java/city/zouitel/reminder/ExampleUnitTest.kt deleted file mode 100644 index 28e35365..00000000 --- a/ui/features/reminder/src/test/java/city/zouitel/reminder/ExampleUnitTest.kt +++ /dev/null @@ -1,17 +0,0 @@ -package city.zouitel.reminder - -import org.junit.Test - -import org.junit.Assert.* - -/** - * Example local unit test, which will execute on the development machine (host). - * - * See [testing documentation](http://d.android.com/tools/testing). - */ -class ExampleUnitTest { - @Test - fun addition_isCorrect() { - assertEquals(4, 2 + 2) - } -} \ No newline at end of file