closeable-state.kt/src/commonTest/kotlin/ru/landgrafhomyak/utility/closeable_state/UsagesCounterTest.kt

10 lines
248 B
Kotlin

package ru.landgrafhomyak.utility.closeable_state
import kotlin.test.Test
internal class UsagesCounterTest: _CloseableStateAllowsConcurrencyAbstractTestSet() {
override fun createState(): CloseableState = UsagesCounter()
@Test
fun test() {}
}