Akira Ajisaka created HADOOP-14218: -------------------------------------- Summary: Replace assertThat with assertTrue in MetricsAsserts Key: HADOOP-14218 URL: https://issues.apache.org/jira/browse/HADOOP-14218 Project: Hadoop Common Issue Type: Test Reporter: Akira Ajisaka Assignee: Akira Ajisaka Priority: Minor
{code:title=MetricsAsserts.java} public static void assertCounterGt(String name, long greater, MetricsRecordBuilder rb) { Assert.assertThat("Bad value for metric " + name, getLongCounter(name, rb), new GreaterThan<Long>(greater)); } {code} The following code cannot be compiled with Mockito 2.1+ because it does not depend on org.hamcrest.Matcher anymore. We can simply replace this code with {{assertTrue(message, getLongCounter() > greater)}}. -- This message was sent by Atlassian JIRA (v6.3.15#6346) --------------------------------------------------------------------- To unsubscribe, e-mail: common-dev-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-dev-h...@hadoop.apache.org