DATAGEODE-3 - Fix GemfireSimpleTypeHolderTest due to API changes in SDC SimpleTypeHolder.

This commit is contained in:
John Blum
2017-04-22 15:56:16 -07:00
parent 9f7de3f39e
commit 2f34d88672
2 changed files with 28 additions and 14 deletions

View File

@@ -23,7 +23,6 @@ import java.math.BigDecimal;
import java.math.BigInteger;
import org.junit.Test;
import org.springframework.data.mapping.model.SimpleTypeHolder;
/**
* Unit tests for {@link GemfireSimpleTypeHolder} class.
@@ -34,9 +33,9 @@ import org.springframework.data.mapping.model.SimpleTypeHolder;
* @see org.springframework.data.mapping.model.SimpleTypeHolder
* @since 1.6.3
*/
public class GemfireSimpleTypeHolderTest {
public class GemfireSimpleTypeHolderUnitTests {
private final GemfireSimpleTypeHolder holder = new GemfireSimpleTypeHolder(new SimpleTypeHolder());
private final GemfireSimpleTypeHolder holder = new GemfireSimpleTypeHolder();
@Test
public void bigDecimalAndBigIntegerAreSimpleTypes() {