Skip to content

Commit

Permalink
Add missing ClusterHashesCommandsTest
Browse files Browse the repository at this point in the history
  • Loading branch information
sazzad16 committed May 6, 2024
1 parent 344ded3 commit 7aad706
Showing 1 changed file with 27 additions and 0 deletions.
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();
}
}

0 comments on commit 7aad706

Please sign in to comment.