Package org.jboss.test.kernel.config.support

Examples of org.jboss.test.kernel.config.support.XMLUtil.validate()


   public void testConstructorDoesNotExist() throws Throwable
   {
      XMLUtil util = bootstrapXML(false);
      try
      {
         util.validate();
         fail("Should not be valid!");
      }
      catch (IllegalStateException expected)
      {
      }
View Full Code Here


   public void testConstructorDoesNotExist() throws Throwable
   {
      XMLUtil util = bootstrapXML(false);
      try
      {
         util.validate();
         fail("Should not be valid!");
      }
      catch (IllegalStateException expected)
      {
      }
View Full Code Here

   protected Object getPlainValue() throws Throwable
   {
      XMLUtil util = bootstrapXML(true);
      Object bean = util.getBean("SimpleBean");
      util.validate();
      return bean;
   }

   protected Class<? extends Exception> getExceptionClass()
   {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.