}
@Test
public void getContainerPropertyIds_freeform_returnsIDAndNAME()
throws SQLException {
SQLContainer container = new SQLContainer(new FreeformQuery(
"SELECT * FROM people", connectionPool, "ID"));
Collection<?> propertyIds = container.getContainerPropertyIds();
Assert.assertEquals(3, propertyIds.size());
Assert.assertArrayEquals(new String[] { "ID", "NAME", "AGE" },
propertyIds.toArray());