HBASE-22534 TestCellUtil fails when run on JDK11

Signed-off-by: Sean Busbey <busbey@apache.org>
(cherry picked from commit 9b23e1d00c)
This commit is contained in:
Sakthi 2019-06-03 22:17:56 -07:00 committed by Sean Busbey
parent 44c3a63160
commit 8cf9f6c361
1 changed files with 7 additions and 2 deletions

View File

@ -524,11 +524,16 @@ public class TestCellUtil {
assertTrue(CellUtil.equals(kv, res));
}
// Workaround for jdk 11 - reflective access to interface default methods for testGetType
private abstract class CellForMockito implements Cell {
}
@Test
public void testGetType() throws IOException {
Cell c = Mockito.mock(Cell.class);
CellForMockito c = Mockito.mock(CellForMockito.class);
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());
assertEquals(type, c.getType());
}