public class ProfileBuilderTest
{
@Test
public void testCreateWithExistingProfile() throws Exception
{
ProfileImpl profile = new ProfileImpl();
profile.setId("testprofile");
ProfileBuilder profileBuilder = ProfileBuilder.create(profile);
assertThat(profileBuilder.getId(), is(profile.getId()));
}