Package org.jboss.test.metatype.values.factory.support

Examples of org.jboss.test.metatype.values.factory.support.TestAnnotation


      compositeType.freeze();

      String[] compositeNames = { "something" };
      CompositeValue expected = new CompositeValueSupport(compositeType, compositeNames, new MetaValue[] { SimpleValueSupport.wrap("Hello") });
     
      TestAnnotation annotation = getClass().getAnnotation(TestAnnotation.class);
      MetaValue result = createMetaValue(annotation);
      CompositeValue actual = assertInstanceOf(result, CompositeValue.class);
      getLog().debug("Annotation Value: " + actual);
      assertEquals(expected, actual);
   }
View Full Code Here

TOP

Related Classes of org.jboss.test.metatype.values.factory.support.TestAnnotation

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.