Assert.assertEquals((long)0, (long)r.getB());
}
@Test
public void test_null() throws Exception {
ABIntegerDict p = new ABIntegerDict(null, null);
ABIntegerDict q = new ABIntegerDict(null, null);
ABIntegerDict r = port.add_integer_dicts(p, q);
Assert.assertEquals((long)0, (long)r.getA());
Assert.assertEquals((long)0, (long)r.getB());
}