10 lines
248 B
Kotlin
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() {}
|
|
} |