/*
 * Created on 26-Apr-2005
 */
package org.bodington.server.realm;

import org.bodington.database.PrimaryKey;
import org.bodington.server.BuildingServerException;
import org.bodington.server.BuildingServerTest;

/**
 * @author buckett
 */
public class AclTest extends BuildingServerTest
{

    public void testRemove() throws BuildingServerException
    {
        Acl acl = resource.getAcl();
        PrimaryKey primaryKey = acl.getAclId();
        acl.remove();
    }

}
