Package com.tobedevoured.modelcitizen.model

Examples of com.tobedevoured.modelcitizen.model.SpareTire


    }

    @Test
    public void spireTireBlueprintInheritsFromWheelBlueprint() throws CreateModelException {
        Wheel wheel = modelFactory.createModel(Wheel.class);
        SpareTire spareTire = modelFactory.createModel(SpareTire.class);

        assertEquals(wheel.getColor(), spareTire.getColor());

        assertEquals("spare tire name", spareTire.getName());
        assertEquals(9, (int) spareTire.getSize());
        assertEquals(400, (int) spareTire.getMileLimit());
    }
View Full Code Here

TOP

Related Classes of com.tobedevoured.modelcitizen.model.SpareTire

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.