10 lines
201 B
Java
10 lines
201 B
Java
package redis.clients.jedis.tests.commands;
|
|
|
|
import org.junit.Test;
|
|
|
|
public class ConnectionHandlingCommandsTest extends JedisCommandTestBase {
|
|
@Test
|
|
public void quit() {
|
|
jedis.quit();
|
|
}
|
|
} |