Set<byte[]> keySet = expectedValues.keySet();
Map<byte[],Cell> actualValues = this.getFull(row,keySet,
HConstants.LATEST_TIMESTAMP, 1,lid);
for (byte[] key : keySet) {
// If test fails exit
Cell cell = actualValues.get(key);
byte[] actualValue = new byte[] {};
if (cell != null)
actualValue = cell.getValue();
if(!Bytes.equals(actualValue,
expectedValues.get(key))) {
success = false;
break;
}