File tree 1 file changed +27
-0
lines changed
src/test/java/redis/clients/jedis/commands/unified/cluster
1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ package redis .clients .jedis .commands .unified .cluster ;
2
+
3
+ import org .junit .After ;
4
+ import org .junit .Before ;
5
+ import org .junit .runner .RunWith ;
6
+ import org .junit .runners .Parameterized ;
7
+ import redis .clients .jedis .RedisProtocol ;
8
+ import redis .clients .jedis .commands .unified .HashesCommandsTestBase ;
9
+
10
+ @ RunWith (Parameterized .class )
11
+ public class ClusterHashesCommandsTest extends HashesCommandsTestBase {
12
+
13
+ public ClusterHashesCommandsTest (RedisProtocol protocol ) {
14
+ super (protocol );
15
+ }
16
+
17
+ @ Before
18
+ public void setUp () {
19
+ jedis = ClusterCommandsTestHelper .getCleanCluster (protocol );
20
+ }
21
+
22
+ @ After
23
+ public void tearDown () {
24
+ jedis .close ();
25
+ ClusterCommandsTestHelper .clearClusterData ();
26
+ }
27
+ }
You can’t perform that action at this time.
0 commit comments