Package com.netflix.governator.guice.mocks

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


        Key<SimpleGenericInterface<String>>     key = Key.get(new TypeLiteral<SimpleGenericInterface<String>>(){});
        SimpleGenericInterface<String>          simple = injector.getInstance(key);

        Assert.assertEquals(simple.getValue(), "a is a");

        ObjectWithGenericInterface              obj = injector.getInstance(ObjectWithGenericInterface.class);
        Assert.assertEquals(obj.getObj().getValue(), "a is a");
    }
View Full Code Here

TOP

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

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.