DATAREDIS-1179 - Polishing.

Transition Tests to Junit Jupiter.
Fix C/P error in callout within reference documentation.

Original pull request: #548.
This commit is contained in:
Christoph Strobl
2020-07-14 13:14:35 +02:00
committed by Mark Paluch
parent 59065ab0bc
commit 3453558d5c
2 changed files with 9 additions and 9 deletions

View File

@@ -22,7 +22,7 @@ import lombok.Data;
import java.util.Collections;
import java.util.Map;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.springframework.data.annotation.TypeAlias;
import org.springframework.data.redis.core.convert.MappingRedisConverter;
import org.springframework.data.redis.core.mapping.RedisMappingContext;
@@ -32,19 +32,19 @@ import org.springframework.data.redis.hash.ObjectHashMapper;
* @author Christoph Strobl
* @author Mark Paluch
*/
public class ObjectHashMapperTests extends AbstractHashMapperTest {
class ObjectHashMapperTests extends AbstractHashMapperTest {
protected ObjectHashMapper mapperFor(Class t) {
return new ObjectHashMapper();
}
@Test // DATAREDIS-503
public void testSimpleType() {
void testSimpleType() {
assertBackAndForwardMapping(new Integer(100));
}
@Test // DATAREDIS-503
public void fromHashShouldCastToType() {
void fromHashShouldCastToType() {
ObjectHashMapper objectHashMapper = new ObjectHashMapper();
Map<byte[], byte[]> hash = objectHashMapper.toHash(new Integer(100));
@@ -54,17 +54,17 @@ public class ObjectHashMapperTests extends AbstractHashMapperTest {
assertThat(result).isEqualTo(new Integer(100));
}
@Test(expected = ClassCastException.class) // DATAREDIS-503
public void fromHashShouldFailIfTypeDoesNotMatch() {
@Test // DATAREDIS-503
void fromHashShouldFailIfTypeDoesNotMatch() {
ObjectHashMapper objectHashMapper = new ObjectHashMapper();
Map<byte[], byte[]> hash = objectHashMapper.toHash(new Integer(100));
String result = objectHashMapper.fromHash(hash, String.class);
assertThatExceptionOfType(ClassCastException.class).isThrownBy(() -> objectHashMapper.fromHash(hash, String.class));
}
@Test // DATAREDIS-1179
public void hashMapperAllowsReuseOfRedisConverter/*and thus the MappingContext holding eg. TypeAlias information*/() {
void hashMapperAllowsReuseOfRedisConverter/*and thus the MappingContext holding eg. TypeAlias information*/() {
WithTypeAlias source = new WithTypeAlias();
source.value = "val";