@Test
public void isFirstId_tableEmptyResultSet_returnsFirstAddedItem()
throws SQLException {
DataGenerator.createGarbage(connectionPool);
SQLContainer container = new SQLContainer(new TableQuery("garbage",
connectionPool, SQLTestsConstants.sqlGen));
Object id = container.addItem();
Assert.assertTrue(container.isFirstId(id));
}