com.deque.axe.android.constants.Constants.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-data Show documentation
Show all versions of axe-devtools-android-data Show documentation
The Axe Devtools Android Data Library
package com.deque.axe.android.constants
object Constants {
@AxeStandard
val AXE_STANDARDS: MutableSet = HashSet()
@AxeStatus
val AXE_STATUSES: MutableSet = HashSet()
const val DEFAULT_SCREEN_TITLE = "No Screen Title Available"
const val TEXT_INPUT = "TextInput"
init {
AXE_STANDARDS.add(AxeStandard.WCAG_21)
AXE_STANDARDS.add(AxeStandard.WCAG_20)
AXE_STANDARDS.add(AxeStandard.PLATFORM)
AXE_STANDARDS.add(AxeStandard.BEST_PRACTICE)
AXE_STATUSES.add(AxeStatus.FAIL)
AXE_STATUSES.add(AxeStatus.PASS)
AXE_STATUSES.add(AxeStatus.INAPPLICABLE)
AXE_STATUSES.add(AxeStatus.INCOMPLETE)
AXE_STATUSES.add(AxeStatus.IGNORED)
}
}