@Test
  public void createSubProfileTest() {
    FacePamphletProfile test = new FacePamphletProfile("Test Profile");

    test.createSubProfile("Kitty");

    assertTrue(test.getSubProfile().getName().equals("Kitty"));
  }