Package org.jboss.forge.addon.ui.validate

Examples of org.jboss.forge.addon.ui.validate.CompositeUIValidator


{

   @Test(expected = IllegalArgumentException.class)
   public void testValidate()
   {
      new CompositeUIValidator(null);
   }
View Full Code Here


   @Test
   public void testValidateMultiple()
   {
      CounterValidator c1 = new CounterValidator();
      CounterValidator c2 = new CounterValidator();
      new CompositeUIValidator(c1, c2).validate(null);
      Assert.assertEquals(1, c1.count);
      Assert.assertEquals(1, c2.count);
   }
View Full Code Here

TOP

Related Classes of org.jboss.forge.addon.ui.validate.CompositeUIValidator

Copyright © 2018 www.massapicom. 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.