Examples of Weld


Examples of org.jboss.weld.environment.se.Weld

public class PostConstructInheritanceTest {

  @Test
  public void testPostConstructInherited() {

    Weld weld = new Weld();
    try {

      Plant.postConstructCalled = false;
      WeldContainer weldContainer = weld.initialize();
      weldContainer.instance().select(Tree.class).get();
      assertTrue(Plant.postConstructCalled);

    } finally {
      weld.shutdown();
    }
  }
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.