Example #1
0
 @Test(timeOut = 10_000)
 public void testMatchingQualifiers() {
   Cell cell = new KeyValue(row, family, qualifier, 1, Bytes.toBytes("value"));
   assertTrue(CellUtils.matchingQualifier(cell, qualifier, 0, qualifier.length));
   assertFalse(CellUtils.matchingQualifier(cell, otherQualifier, 0, otherQualifier.length));
 }