-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing ClusterHashesCommandsTest
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
src/test/java/redis/clients/jedis/commands/unified/cluster/ClusterHashesCommandsTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package redis.clients.jedis.commands.unified.cluster; | ||
|
||
import org.junit.After; | ||
import org.junit.Before; | ||
import org.junit.runner.RunWith; | ||
import org.junit.runners.Parameterized; | ||
import redis.clients.jedis.RedisProtocol; | ||
import redis.clients.jedis.commands.unified.HashesCommandsTestBase; | ||
|
||
@RunWith(Parameterized.class) | ||
public class ClusterHashesCommandsTest extends HashesCommandsTestBase { | ||
|
||
public ClusterHashesCommandsTest(RedisProtocol protocol) { | ||
super(protocol); | ||
} | ||
|
||
@Before | ||
public void setUp() { | ||
jedis = ClusterCommandsTestHelper.getCleanCluster(protocol); | ||
} | ||
|
||
@After | ||
public void tearDown() { | ||
jedis.close(); | ||
ClusterCommandsTestHelper.clearClusterData(); | ||
} | ||
} |