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

androidTest.tech.skot.core.components.TestSKInput.kt Maven / Gradle / Ivy

There is a newer version: 1.2.9
Show newest version
package tech.skot.core.components

import org.junit.Test
import tech.skot.core.components.inputs.SKInputVC
import tech.skot.core.components.inputs.SKInputViewProxy
import tech.skot.view.tests.SKTestView
import tech.skot.view.tests.testComponents

class TestSKInput: SKTestView() {


    @Test
    fun testInputYpes() {

        val proxyTextCapSentences = SKInputViewProxy(
            hintInitial = "TextCapSentences",
            type = SKInputVC.Type.TextCapSentences,
            textInitial = "",
            onInputText = {}
        )

        val proxyALLCAPS = SKInputViewProxy(
            hintInitial = "AllCaps",
            type = SKInputVC.Type.AllCaps,
            textInitial = "",
            onInputText = {}
        )


        testComponents(
            proxyTextCapSentences,
            proxyALLCAPS
        )

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy