public DefaultProfileSetTest(String arg0) {
super(arg0);
}
public void testAddProfile_exceptions() {
DefaultProfileSet set = new DefaultProfileSet("baseProfile");
try {
set.addProfile((Profile) null);
fail("no arg exception on null");
} catch (IllegalArgumentException e) {
}
try {
set.addProfile("");
fail("no arg exception on empty");
} catch (IllegalArgumentException e) {
}
try {
set.addProfile(" ");
fail("no arg exception on whitespace");
} catch (IllegalArgumentException e) {
}
}