Package com.sk89q.craftbook.mechanics.boat

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


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

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

        new Uncrashable().onVehicleDestroy(event);

        when(event.getAttacker()).thenReturn(mock(LivingEntity.class));
        new Uncrashable().onVehicleDestroy(event);

        verify(event).setCancelled(true);
        verify(boat).setVelocity(new Vector(0,0,0));
    }
View Full Code Here

TOP

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

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.