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

commonTest.model.TestApplicationID.kt Maven / Gradle / Ivy

Go to download

Algolia is a powerful search-as-a-service solution, made easy to use with API clients, UI libraries,and pre-built integrations. Algolia API Client for Kotlin lets you easily use the Algolia SearchREST API from your JVM project, such as Android or backend implementations.

The newest version!
package model

import com.algolia.search.exception.EmptyStringException
import com.algolia.search.model.ApplicationID
import shouldFailWith
import kotlin.test.Test

internal class TestApplicationID {

    @Test
    fun rawShouldNotBeEmpty() {
        shouldFailWith { ApplicationID("") }
    }

    @Test
    fun rawShouldNotBeBlank() {
        shouldFailWith { ApplicationID(" ") }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy