HADOOP-14218. Replace assertThat with assertTrue in MetricsAsserts.

This commit is contained in:
Akira Ajisaka 2017-03-28 14:32:40 +09:00
parent 9bae6720cb
commit 448ec81fd7
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50

View File

@ -27,7 +27,6 @@
import static org.mockito.Mockito.*;
import org.mockito.stubbing.Answer;
import org.mockito.internal.matchers.GreaterThan;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.ArgumentCaptor;
@ -329,8 +328,8 @@ public static void assertCounter(String name, long expected,
*/
public static void assertCounterGt(String name, long greater,
MetricsRecordBuilder rb) {
Assert.assertThat("Bad value for metric " + name, getLongCounter(name, rb),
new GreaterThan<Long>(greater));
Assert.assertTrue("Bad value for metric " + name,
getLongCounter(name, rb) > greater);
}
/**
@ -352,8 +351,8 @@ public static void assertCounterGt(String name, long greater,
*/
public static void assertGaugeGt(String name, double greater,
MetricsRecordBuilder rb) {
Assert.assertThat("Bad value for metric " + name, getDoubleGauge(name, rb),
new GreaterThan<Double>(greater));
Assert.assertTrue("Bad value for metric " + name,
getDoubleGauge(name, rb) > greater);
}
/**