* Tests that no Pool object can be created with a null string.
*/
@Test
public void testPoolNameNotNull() {
try {
Pool pool = new Pool(null, null);
fail("Pool object got created with a null name somehow.");
} catch (IllegalArgumentException e) {
// Pass
} catch (Exception e) {
fail("Pool object got created with a null name and failed only later.");