byte[] igor1Bytes = igor1.getBytes("content");
assertEqual(igorBytes, igor1Bytes);
}
private void assertEqual(byte[] igor, byte[] igor1) {
if(igor.length != igor1.length) throw new TestException("arrays not equal");
for(int i = 0 ; i < igor.length ; i++){
if(igor[i] != igor1[i])
throw new TestException("arrays not equal");
}
}