+ renamed tests so they can be picked by Maven
This commit is contained in:
@@ -27,7 +27,7 @@ import org.springframework.datastore.redis.Address;
|
||||
import org.springframework.datastore.redis.Person;
|
||||
|
||||
|
||||
public class SimpleRedisSerializerTest {
|
||||
public class SimpleRedisSerializerTests {
|
||||
|
||||
private static class A implements Serializable {
|
||||
private Integer value = Integer.valueOf(30);
|
||||
@@ -41,7 +41,7 @@ import org.junit.Test;
|
||||
*
|
||||
* @author Costin Leau
|
||||
*/
|
||||
public abstract class AbstractRedisCollectionTest<T> {
|
||||
public abstract class AbstractRedisCollectionTests<T> {
|
||||
|
||||
protected AbstractRedisCollection<T> collection;
|
||||
|
||||
@@ -29,7 +29,7 @@ import org.junit.Test;
|
||||
*
|
||||
* @author Costin Leau
|
||||
*/
|
||||
public abstract class AbstractRedisListTest<T> extends AbstractRedisCollectionTest<T> {
|
||||
public abstract class AbstractRedisListTests<T> extends AbstractRedisCollectionTests<T> {
|
||||
|
||||
protected RedisList<T> list;
|
||||
|
||||
@@ -28,7 +28,7 @@ import org.springframework.datastore.redis.core.RedisTemplate;
|
||||
*
|
||||
* @author Costin Leau
|
||||
*/
|
||||
public class PersonRedisListTest extends AbstractRedisListTest<Person> {
|
||||
public class PersonRedisListTests extends AbstractRedisListTests<Person> {
|
||||
|
||||
private JedisConnectionFactory factory;
|
||||
private int counter = 0;
|
||||
@@ -27,7 +27,7 @@ import org.springframework.datastore.redis.core.RedisTemplate;
|
||||
*
|
||||
* @author Costin Leau
|
||||
*/
|
||||
public class StringRedisListTest extends AbstractRedisListTest<String> {
|
||||
public class StringRedisListTests extends AbstractRedisListTests<String> {
|
||||
|
||||
private JedisConnectionFactory factory;
|
||||
|
||||
Reference in New Issue
Block a user