package org.ocpsoft.rewrite.annotation.config; import static org.junit.Assert.assertEquals; import org.apache.http.client.methods.HttpGet; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.junit.Test; import org.junit.runner.RunWith; import org.ocpsoft.rewrite.annotation.RewriteAnnotationTest; import org.ocpsoft.rewrite.test.HttpAction; import org.ocpsoft.rewrite.test.RewriteTest; import org.ocpsoft.rewrite.test.RewriteTestBase; @RunWith(Arquillian.class) public class AnnotationEnabledConfigTest extends RewriteTestBase { @Deployment(testable = false) public static WebArchive getDeployment() { return RewriteTest.getDeploymentWithCDI() .addAsLibrary(RewriteAnnotationTest.getRewriteAnnotationArchive()) .addClasses(AnnotationEnabledConfig.class); } @Test public void testConfigEnabledByAnnotations() throws Exception { HttpAction<HttpGet> action = get("/config-enabled-by-annotation"); assertEquals(299, action.getStatusCode()); } }