Package org.amicofragile.test.context.foobar

Examples of org.amicofragile.test.context.foobar.FooBar


  @Test
  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

Related Classes of org.amicofragile.test.context.foobar.FooBar

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.