Assert.assertEquals(size - 1, container.size());
}
@Test
public void getItem_freeformItemRemoved_returnsNull() throws SQLException {
SQLContainer container = new SQLContainer(new FreeformQuery(
"SELECT * FROM people", connectionPool, "ID"));
Object id = container.firstItemId();
Assert.assertTrue(container.removeItem(id));
Assert.assertNull(container.getItem(id));
}