secant-android-wallet/spackle-lib/src/androidTest/java/co/electriccoin/zcash/spackle/model/IndexTest.kt

13 lines
246 B
Kotlin

package co.electriccoin.zcash.spackle.model
import androidx.test.filters.SmallTest
import org.junit.Test
class IndexTest {
@Test(expected = IllegalArgumentException::class)
@SmallTest
fun out_of_bounds() {
Index(-1)
}
}