Package org.jnode.test.fs.driver.factories

Examples of org.jnode.test.fs.driver.factories.MockIDEDeviceFactory


        super.init(config, testCase);

        IDEDiskDriver driver = new IDEDiskDriver();

        // set the current testCase for our factory
        MockIDEDeviceFactory factory = (MockIDEDeviceFactory)
            IDEDriverUtils.getIDEDeviceFactory();
        factory.setTestCase(testCase);

        // create stub resource manager
        MockObjectFactory.createResourceManager(testCase);

        // create stub IDE device
View Full Code Here


    }

    protected void populateNameSpace(NameSpace namespace) {
        try {
            namespace.bind(FloppyDeviceFactory.NAME, new MockFloppyDeviceFactory());
            namespace.bind(IDEDeviceFactory.NAME, new MockIDEDeviceFactory());
            namespace.bind(DeviceManager.NAME, StubDeviceManager.INSTANCE);

//            CMOSService cmos = new CMOSService()
//            {
//                public int getRegister(int regnr)
View Full Code Here

TOP

Related Classes of org.jnode.test.fs.driver.factories.MockIDEDeviceFactory

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.