com.deque.axe.android.constants.Config.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axe-devtools-android-core Show documentation
Show all versions of axe-devtools-android-core Show documentation
The Axe Devtools Android Core Library
The newest version!
package com.deque.axe.android.constants
object Config {
var AXE_VERSION = "0.0"
val UNDER_TEST: Boolean
get() {
val isCoreTest = isClassInTest("com.deque.axe.android.AxeTest")
val isAxeDevToolsAndroidTest = isClassInTest("com.deque.mobile.devtools.AxeDevToolsViewBuilderTest")
return isCoreTest || isAxeDevToolsAndroidTest
}
private fun isClassInTest(className: String): Boolean {
return try {
Class.forName(className)
true
} catch (e: ClassNotFoundException) {
false
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy