1 22 package org.jboss.ejb3.test.schema.unit; 23 24 import org.jboss.logging.Logger; 25 import org.jboss.test.JBossTestCase; 26 import junit.framework.Test; 27 28 import javax.xml.parsers.DocumentBuilder ; 29 import javax.xml.parsers.DocumentBuilderFactory ; 30 import java.io.File ; 31 import org.w3c.dom.Document ; 32 import org.xml.sax.ErrorHandler ; 33 import org.xml.sax.SAXParseException ; 34 35 40 public class JbossValidationTestCase 41 extends JBossTestCase 42 { 43 Exception caughtException = null; 44 45 private static final Logger log = Logger 46 .getLogger(JbossValidationTestCase.class); 47 48 public void test() 49 { 50 51 } 52 53 public JbossValidationTestCase(String name) 54 { 55 super(name); 56 } 57 58 public static Test suite() throws Exception 59 { 60 try 61 { 62 return getDeploySetup(JbossValidationTestCase.class, "jboss-validation.jar"); 63 } 64 catch (Exception e) 65 { 66 e.printStackTrace(); 67 return null; 68 } 69 } 70 71 } 72 | Popular Tags |