Package com.netflix.governator.guice.mocks

Examples of com.netflix.governator.guice.mocks.SimpleInterface


    public void     testAutoBindSingletonToInterface(LifecycleInjectorBuilder lifecycleInjectorBuilder) throws Exception
    {
        Injector    injector = lifecycleInjectorBuilder
            .usingBasePackages("com.netflix.governator.guice.mocks")
            .createInjector();
        SimpleInterface     simple = injector.getInstance(SimpleInterface.class);

        Assert.assertEquals(simple.getValue(), 1234);
    }
View Full Code Here

TOP

Related Classes of com.netflix.governator.guice.mocks.SimpleInterface

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.