HBASE-22534 TestCellUtil fails when run on JDK11
Signed-off-by: Sean Busbey <busbey@apache.org> (cherry picked from commit 9b23e1d00cbf65cb9f80a71cd6d2b9721c543991)
This commit is contained in:
parent
afa263d739
commit
35d3612f66
@ -534,11 +534,16 @@ public class TestCellUtil {
|
|||||||
assertTrue(CellUtil.equals(kv, res));
|
assertTrue(CellUtil.equals(kv, res));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Workaround for jdk 11 - reflective access to interface default methods for testGetType
|
||||||
|
private abstract class CellForMockito implements Cell {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testGetType() throws IOException {
|
public void testGetType() throws IOException {
|
||||||
Cell c = Mockito.mock(Cell.class);
|
CellForMockito c = Mockito.mock(CellForMockito.class);
|
||||||
Mockito.when(c.getType()).thenCallRealMethod();
|
Mockito.when(c.getType()).thenCallRealMethod();
|
||||||
for (Cell.Type type : Cell.Type.values()) {
|
for (CellForMockito.Type type : CellForMockito.Type.values()) {
|
||||||
Mockito.when(c.getTypeByte()).thenReturn(type.getCode());
|
Mockito.when(c.getTypeByte()).thenReturn(type.getCode());
|
||||||
assertEquals(type, c.getType());
|
assertEquals(type, c.getType());
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user