Examples of HelloCollector


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
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.