Skip to content

Commit

Permalink
🔀 Merge pull request #20 from snuhcs-course/test/signupviewmodel-fron…
Browse files Browse the repository at this point in the history
…tend

Test/signupviewmodel frontend
  • Loading branch information
sukchan-0811 authored Nov 3, 2023
2 parents 4957adf + b0050d8 commit 64f4433
Show file tree
Hide file tree
Showing 2 changed files with 511 additions and 0 deletions.
8 changes: 8 additions & 0 deletions frontend/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ android {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
}

}

dependencies {
Expand All @@ -61,6 +62,7 @@ dependencies {
implementation("androidx.compose.ui:ui-tooling-preview")
implementation("androidx.compose.material3:material3")
testImplementation("junit:junit:4.13.2")
testImplementation("androidx.arch.core:core-testing:2.2.0")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
androidTestImplementation(platform("androidx.compose:compose-bom:2023.03.00"))
Expand All @@ -82,6 +84,7 @@ dependencies {
val coroutinesVersion = "1.7.1"
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutinesVersion")

// Preference
implementation("androidx.preference:preference-ktx:1.2.1")
Expand Down Expand Up @@ -117,4 +120,9 @@ dependencies {
kapt("com.google.dagger:hilt-compiler:$hiltVersion")

implementation("androidx.hilt:hilt-navigation-compose:1.0.0")

// MockK
val mockkVersion = "1.13.8"
testImplementation("io.mockk:mockk-agent:$mockkVersion")
testImplementation("io.mockk:mockk-android:$mockkVersion")
}
Loading

0 comments on commit 64f4433

Please sign in to comment.