Package org.apache.hivemind.service

Examples of org.apache.hivemind.service.InterfaceFab


        // we use a nice control.

        MockControl control = MockControl.createNiceControl(InterfaceFab.class);
        addControl(control);

        InterfaceFab fab = (InterfaceFab) control.getMock();

        ClassFactory cf = newClassFactory(fab);

        fab.addInterface(BeanInterface.class);
        fab.addInterface(BeanSubInterface.class);
        fab.addMethod(new MethodSignature(String.class, "beanMethod", null, null));

        fab.createInterface();
        control.setReturnValue(null);

        replayControls();

        InterfaceSynthesizerImpl is = new InterfaceSynthesizerImpl();
View Full Code Here


    }

    public void testIgnoreStaticAndPrivateMethods()
    {
        MockControl control = newControl(InterfaceFab.class);
        InterfaceFab fab = (InterfaceFab) control.getMock();

        ClassFactory cf = newClassFactory(fab);

        fab.addInterface(BeanInterface.class);
        fab.addMethod(new MethodSignature(String.class, "beanMethod", null, null));

        fab.createInterface();
        control.setReturnValue(null);

        replayControls();

        InterfaceSynthesizerImpl is = new InterfaceSynthesizerImpl();
View Full Code Here

TOP

Related Classes of org.apache.hivemind.service.InterfaceFab

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.