public final void testConfirmationCallback_06() {
String[] opt = {"CONTINUE", "ABORT"};
String[] opt1 = {"START", ""};
String[] opt2 = {"START", null};
try {
cc = new ConfirmationCallback(ConfirmationCallback.INFORMATION, opt, 1);
} catch(IllegalArgumentException e){}
try {
cc = new ConfirmationCallback(ConfirmationCallback.INFORMATION, opt1, 1);
fail("1. Option type should not be null and empty ");
} catch(IllegalArgumentException e){}
try {
cc = new ConfirmationCallback(ConfirmationCallback.INFORMATION, opt2, 1);
fail("2. Option type should not be null and empty ");
} catch(IllegalArgumentException e){}
try {
cc = new ConfirmationCallback(ConfirmationCallback.INFORMATION, opt, 3);
fail("Default Option does not lie within the array boundaries of options ");
} catch(IllegalArgumentException e){
}
}