checkNullValues( DataType.CHARARRAY, new String("b") );
}
@Test
public void testDataByteArrayNe() throws Exception {
ConstantExpression lt = GenPhyOp.exprConst();
lt.setValue(new DataByteArray("a"));
ConstantExpression rt = GenPhyOp.exprConst();
rt.setValue(new DataByteArray("b"));
NotEqualToExpr g = GenPhyOp.compNotEqualToExpr();
g.setLhs(lt);
g.setRhs(rt);
g.setOperandType(DataType.BYTEARRAY);
Result r = g.getNext(new Boolean(true));