All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.deque.axe.android.constants.Constants.kt Maven / Gradle / Ivy

There is a newer version: 5.5.2
Show newest version
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)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy