1 22 package org.jboss.test.cluster.test; 23 24 import junit.framework.Test; 25 import org.jboss.test.JBossClusteredTestCase; 26 27 34 public class ScopedFieldBasedTestCase 35 extends FieldBasedTestCase 36 { 37 38 public ScopedFieldBasedTestCase(String name) 39 { 40 super(name); 41 warName_ = "/http-scoped-field/"; 42 43 concatenate(); 44 } 45 46 protected String getWarName() 47 { 48 return "http-scoped-field"; 49 } 50 51 public static Test suite() throws Exception  52 { 53 Test t1 = JBossClusteredTestCase.getDeploySetup(ScopedFieldBasedTestCase.class, 54 "http-scoped-field.war"); 55 return t1; 56 } 57 58 } 59 | Popular Tags |