Package org.amicofragile.test.context.foobar

Examples of org.amicofragile.test.context.foobar.FooBar.sayHelloTo()


  public void usesMockedInitialContext() throws Exception {
    HelloCollector collector = new HelloCollector();
    MockedInitialContextFactory.bind("services/Hello", collector);
    System.setProperty(Context.INITIAL_CONTEXT_FACTORY, MockedInitialContextFactory.class.getName());
    FooBar fb = new FooBar();
    fb.sayHelloTo("Pietro");
   
    assertEquals("Pietro", collector.getLastTarget());
  }
}
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.