/**
   * Test the {@link PersonProgramStatusController#getAll(UUID, ObjectStatus, Integer, Integer,
   * String, String)} action.
   *
   * @throws ObjectNotFoundException If object could not be found.
   */
  @Test
  public void testControllerAll() throws ObjectNotFoundException {
    final Collection<PersonProgramStatusTO> list =
        controller.getAll(PERSON_ID, ObjectStatus.ACTIVE, null, null, null, null).getRows();

    assertNotNull("List should not have been null.", list);
  }