Skip to content

Commit

Permalink
add missing test tags
Browse files Browse the repository at this point in the history
  • Loading branch information
himadieievsv committed Jan 4, 2024
1 parent ec3d64d commit 9f5daf3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@ import org.junit.jupiter.api.Assertions.assertFalse
import org.junit.jupiter.api.Assertions.assertTrue
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Nested
import org.junit.jupiter.api.Tag
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.assertThrows
import org.junit.jupiter.params.ParameterizedTest
import org.junit.jupiter.params.provider.ValueSource
import kotlin.time.Duration.Companion.milliseconds
import kotlin.time.Duration.Companion.seconds

@Tag(TestTags.UNIT)
class SemaphoreTest {
@Nested
inner class SingleRedisInstance {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ import mu.KotlinLogging
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.Assertions.assertNull
import org.junit.jupiter.api.Assertions.assertTrue
import org.junit.jupiter.api.Tag
import org.junit.jupiter.api.Test
import kotlin.system.measureTimeMillis

@Tag(TestTags.UNIT)
class WithTimeoutInThreadTest {
private val logger = KotlinLogging.logger {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@ import org.apache.commons.pool2.impl.GenericObjectPool
import org.junit.jupiter.api.Assertions
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Nested
import org.junit.jupiter.api.Tag
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.assertThrows
import org.junit.jupiter.params.ParameterizedTest
import org.junit.jupiter.params.provider.ValueSource
import java.io.IOException
import kotlin.time.Duration.Companion.seconds

@Tag(TestTags.UNIT)
class LettuceCountDownLatchBackendTest {
private lateinit var redis: LettucePubSubPooled<String, String>
private lateinit var sync: RedisPubSubCommands<String, String>
Expand Down

0 comments on commit 9f5daf3

Please sign in to comment.