Package org.amicofragile.test.context.hello

Examples of org.amicofragile.test.context.hello.HelloCollector


import org.junit.Test;

public class FooBarTest {
  @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.hello.HelloCollector

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.