Package org.jboss.arquillian.test.spi.event.enrichment

Examples of org.jboss.arquillian.test.spi.event.enrichment.BeforeEnrichment


   @Inject
   private Event<EnrichmentEvent> enrichmentEvent;
  
   public void enrich(@Observes Before event) throws Exception
   {
      enrichmentEvent.fire(new BeforeEnrichment());
      Collection<TestEnricher> testEnrichers = serviceLoader.get().all(TestEnricher.class);
      for(TestEnricher enricher : testEnrichers)
      {
         enricher.enrich(event.getTestInstance());
      }
View Full Code Here

TOP

Related Classes of org.jboss.arquillian.test.spi.event.enrichment.BeforeEnrichment

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.