DATACOUCH-37 - Refactor Deprecated JUnit Asserts.
Removed deprecated methods and changed to Hamcrest. -=david=-
This commit is contained in:
committed by
Michael Nitschinger
parent
46566b9479
commit
fa397759e3
@@ -440,7 +440,7 @@ public class MappingCouchbaseConverterTests {
|
||||
private Map<String, Boolean> attr1;
|
||||
private Map<Integer, String> attr2;
|
||||
private Map<String, Map<String, String>> attr3;
|
||||
public MapEntity(Map attr0, Map attr1, Map attr2, Map attr3) {
|
||||
public MapEntity(Map<String, String> attr0, Map<String, Boolean> attr1, Map<Integer, String> attr2, Map<String, Map<String, String>> attr3) {
|
||||
this.attr0 = attr0;
|
||||
this.attr1 = attr1;
|
||||
this.attr2 = attr2;
|
||||
|
||||
@@ -25,7 +25,10 @@ import org.springframework.data.couchbase.TestApplicationConfig;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
||||
|
||||
import static junit.framework.Assert.assertNotNull;
|
||||
import static org.hamcrest.MatcherAssert.assertThat;
|
||||
import static org.hamcrest.Matchers.isEmptyString;
|
||||
import static org.hamcrest.Matchers.notNullValue;
|
||||
import static org.hamcrest.core.IsNot.not;
|
||||
import static org.junit.Assert.assertFalse;
|
||||
|
||||
/**
|
||||
@@ -51,8 +54,7 @@ public class ClientInfoTests {
|
||||
@Test
|
||||
public void hostNames() {
|
||||
String hostnames = ci.getHostNames();
|
||||
assertNotNull(hostnames);
|
||||
assertFalse(hostnames.isEmpty());
|
||||
assertThat(hostnames, not(isEmptyString()));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -25,7 +25,8 @@ import org.springframework.data.couchbase.TestApplicationConfig;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
||||
|
||||
import static junit.framework.Assert.assertTrue;
|
||||
import static org.hamcrest.MatcherAssert.assertThat;
|
||||
import static org.hamcrest.Matchers.greaterThan;
|
||||
|
||||
/**
|
||||
* @author Michael Nitschinger
|
||||
@@ -49,12 +50,12 @@ public class ClusterInfoTests {
|
||||
|
||||
@Test
|
||||
public void totalRAMAssigned() {
|
||||
assertTrue(ci.getTotalRAMAssigned() > 0);
|
||||
assertThat(ci.getTotalRAMAssigned(), greaterThan(0L));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void totalRAMUsed() {
|
||||
assertTrue(ci.getTotalRAMUsed() > 0);
|
||||
assertThat(ci.getTotalRAMUsed(), greaterThan(0L));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user