0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 12:02:16 +02:00

[Kotlin Cleanup] RustTest

This commit is contained in:
oyeraghib 2022-05-01 07:40:55 +05:30 committed by David Allison
parent 081b1f2b56
commit ac79fcd376

View File

@ -16,17 +16,15 @@
package com.ichi2.anki.tests
import com.ichi2.libanki.Storage
import com.ichi2.utils.KotlinCleanup
import net.ankiweb.rsdroid.BackendException
import org.hamcrest.MatcherAssert
import org.hamcrest.Matchers.`is`
import org.hamcrest.Matchers.equalTo
import org.junit.Rule
import org.junit.Test
import org.junit.rules.Timeout
import java.io.IOException
import java.util.concurrent.TimeUnit
@KotlinCleanup("is --> equalTo")
class RustTest : InstrumentedTest() {
/** Ensure that the database isn't be locked
* This happened before the database code was converted to use the Rust backend.
@ -41,6 +39,6 @@ class RustTest : InstrumentedTest() {
val path = Shared.getTestFilePath(testContext, "initial_version_2_12_1.anki2")
val collection = Storage.Collection(testContext, path)
val ver = collection.db.queryScalar("select ver from col")
MatcherAssert.assertThat(ver, `is`(11))
MatcherAssert.assertThat(ver, equalTo(11))
}
}