3132333435363738394041
*/ @Test public void testAttack() { final Gandhi g = new Gandhi(); final Creature c = new Creature(); g.attack(null); g.attack(c); assertFalse(c.isAttacking()); } /**
3233343536373839404142
@Test public void testAttack() { final Gandhi g = new Gandhi(); final Creature c = new Creature(); g.attack(null); g.attack(c); assertFalse(c.isAttacking()); } /** * Tests for canAttackNow.