+ renamed tests so they can be picked by Maven

This commit is contained in:
Costin Leau
2010-11-24 18:41:01 +02:00
parent 31242ad45e
commit 86bf2f2c4a
5 changed files with 5 additions and 5 deletions

View File

@@ -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);

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;