Examples of SpareTire


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
Copyright © 2018 www.massapi.com. 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.