@Test
public void firstItemId_freeformNewlyAddedFirstItemRemoved_resultChanges()
throws SQLException {
DataGenerator.createGarbage(connectionPool);
SQLContainer container = new SQLContainer(new FreeformQuery(
"SELECT * FROM GARBAGE", connectionPool, "ID"));
Object first = container.addItem();
Object second = container.addItem();
Assert.assertSame(first, container.firstItemId());
Assert.assertTrue(container.removeItem(first));