*/
public void run() throws Exception {
AuthenticationPermission ap = new AuthenticationPermission(
"abc \"abc\"", "listen");
logger.fine("Calling 'newPermissionCollection' of " + ap + ".");
PermissionCollection pc = ap.newPermissionCollection();
if (pc.elements().hasMoreElements()) {
// FAIL
throw new TestException(
"Created PermissionCollection is not empty: " + pc);