1
0

add Dependecies

This commit is contained in:
Владимир Шперлинг 2024-02-04 10:03:55 +00:00
parent 37d2796f9f
commit e0cd40f8a1

View File

@ -107,6 +107,13 @@ object Dependencies {
*/ */
val core = Dependency("androidx.test:core", "1.5.0") val core = Dependency("androidx.test:core", "1.5.0")
/**
* [androidx.tech](https://androidx.tech/artifacts/test/core/)
*
* [Documentation](https://developer.android.com/training/testing)
*/
val junit = Dependency("androidx.test.ext:junit-ktx", "1.1.5")
/** /**
* [androidx.tech](https://androidx.tech/artifacts/test.espresso/espresso-core/) * [androidx.tech](https://androidx.tech/artifacts/test.espresso/espresso-core/)
* *
@ -133,6 +140,13 @@ object Dependencies {
*/ */
val rules = Dependency("androidx.test:rules", "1.5.0") val rules = Dependency("androidx.test:rules", "1.5.0")
/**
* [androidx.tech](https://androidx.tech/artifacts/test/rules/)
*
* [Documentation](https://developer.android.com/training/testing/junit-rules)
*/
val compose = Dependency("androidx.compose.ui:ui-test-junit4", "1.6.0")
/** /**
* [androidx.tech](https://androidx.tech/artifacts/test/orchestrator/) * [androidx.tech](https://androidx.tech/artifacts/test/orchestrator/)
* *
@ -181,6 +195,21 @@ object Dependencies {
*/ */
val junit = Dependency("junit:junit", "4.13") val junit = Dependency("junit:junit", "4.13")
/**
* Truth makes your test assertions and failure messages more readable.
* Similar to AssertJ, it natively supports many JDK and Guava types,
* and it is extensible to others.
*
* [Documentation](https://truth.dev/)
*
* [Github](https://github.com/google/truth)
*
* [Apache License 2.0](https://github.com/google/truth/blob/master/LICENSE)
*
* [Changelog](https://github.com/google/truth/releases)
*/
val truth = Dependency("com.google.truth:truth", "1.3.0")
/** /**
* Kaspresso is a framework for Android UI testing. Based on Espresso and UI Automator. * Kaspresso is a framework for Android UI testing. Based on Espresso and UI Automator.
* *