@Test
  public void testAreFightingInArenaNoFight() {
    WorldObject performer =
        TestUtils.createIntelligentWorldObject(1, Constants.ARENA_OPPONENT_ID, null);
    WorldObject actionTarget =
        TestUtils.createIntelligentWorldObject(2, Constants.ARENA_OPPONENT_ID, null);

    assertEquals(
        false, DefaultGoalObstructedHandler.areFightingInArena(performer, actionTarget, null));
  }