Examples of Drops


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

        when(boat.getLocation()).thenReturn(loc);

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

        new Drops().onVehicleDestroy(event);

        verify(event).setCancelled(true);
        verify(boat).remove();
        verify(world).dropItemNaturally(org.mockito.Mockito.eq(loc), org.mockito.Mockito.<ItemStack>any());
    }
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.