Package com.sk89q.craftbook.mechanics.boat

Examples of com.sk89q.craftbook.mechanics.boat.LandBoats


        VehicleCreateEvent event = mock(VehicleCreateEvent.class);
        Boat boat = mock(Boat.class);

        when(event.getVehicle()).thenReturn(boat);

        new LandBoats().onVehicleCreate(event);

        verify(boat).setWorkOnLand(true);
    }
View Full Code Here

TOP

Related Classes of com.sk89q.craftbook.mechanics.boat.LandBoats

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.