* @throws Exception if the test fails.
*/
public void testDoSelectAll() throws Exception
{
Criteria criteria = new Criteria();
criteria.addSelectColumn(stringColumnMap);
criteria.addSelectColumn(integerColumnMap);
// single result "fd", 23 found
when(resultSet.next()).thenReturn(true, false);
when(resultSet.getString(1)).thenReturn("fd");
when(resultSet.getInt(2)).thenReturn(23);