assertTrue("Mutator is not in the expected state", mutator.deleteIfNull);
}
@Test
public void testConstructorArgs() {
IThriftPool pool = Mockito.mock(IThriftPool.class);
Mutator mutator = new Mutator(pool, Long.MAX_VALUE, true, Integer.MAX_VALUE);
assertEquals("Mutator timestamp is not in the expected state", Long.MAX_VALUE, mutator.timestamp);
assertTrue("Mutator deleteIfNull is not in the expected state", mutator.deleteIfNull);
assertEquals("Mutator TTL is not in the expected state", Integer.MAX_VALUE, (int) mutator.ttl);