@Test
  public void getBio() {
    String somethingAboutYourself = "Something about myself?";
    FacePamphletProfile test = new FacePamphletProfile("Test Profile");
    test.setBio(somethingAboutYourself);

    assertTrue(test.getBio().equals(somethingAboutYourself));
  }