6
나는 org.mockito.AdditionalMatchers
이 어떻게 작동하는지 알기 위해 노력하고 있지만 실패했습니다. 이 테스트가 실패한 이유는 무엇입니까?org.mockito.AdditionalMatchers.gt는 어떻게 사용해야합니까?
import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.*;
import static org.mockito.AdditionalMatchers.*;
public class DemoTest {
@Test
public void testGreaterThan() throws Exception {
assertThat(17
, is(gt(10))
);
}
}
출력은 :이 경우에 Hamcrest의 greaterThan
를 사용해야합니다
java.lang.AssertionError:
Expected: is <0>
got: <17>