package org.jboss.test.jacc.test;
import org.jboss.test.JBossTestCase;
import junit.framework.Test;
public class WebConstraintsUnitTestCase
extends org.jboss.test.security.test.WebConstraintsUnitTestCase
{
public WebConstraintsUnitTestCase(String name)
{
super(name);
}
public void testGetAccess() throws Exception
{
setStrictStarRolesMode(true);
super.testGetAccess();
}
public void testPostAccess() throws Exception
{
setStrictStarRolesMode(true);
super.testPostAccess();
}
public static Test suite() throws Exception
{
return JBossTestCase.getDeploySetup(WebConstraintsUnitTestCase.class,
org.jboss.test.security.test.WebConstraintsUnitTestCase.WAR);
}
}