Package org.apache.cayenne.di.mock

Examples of org.apache.cayenne.di.mock.MockImplementation1


        assertEquals("MyName", service.getName());
    }

    public void testInstanceBinding() {

        final MockImplementation1 instance = new MockImplementation1();

        Module module = new Module() {

            public void configure(Binder binder) {
                binder.bind(MockInterface1.class).toInstance(instance);
View Full Code Here

TOP

Related Classes of org.apache.cayenne.di.mock.MockImplementation1

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.