template.setGroupId("TEST_J");
template.setSource("TEST_K");
template.setUserId("TEST_K");
JpaActivityStreamsEntry jpaTemplate = converter.convert(template);
assertThat(jpaTemplate, is(not(sameInstance(template))));
assertThat(jpaTemplate, is(instanceOf(JpaActivityStreamsEntry.class)));
assertThat(jpaTemplate.getAppId(), is(equalTo(template.getAppId())));
assertThat(jpaTemplate.getBcc(), is(equalTo(template.getBcc())));
assertThat(jpaTemplate.getContent(), is(equalTo(template.getContent())));
assertThat(jpaTemplate.getDc(), is(equalTo(template.getDc())));
assertThat(jpaTemplate.getInReplyTo(), is(equalTo(template.getInReplyTo())));
assertThat(jpaTemplate.getLocation(), is(equalTo(template.getLocation())));
assertThat(jpaTemplate.getPriority(), is(equalTo(template.getPriority())));
assertThat(jpaTemplate.getTitle(), is(equalTo(template.getTitle())));
assertThat(jpaTemplate.getGroupId(), is(equalTo(template.getGroupId())));
assertThat(jpaTemplate.getSource(), is(equalTo(template.getSource())));
assertThat(jpaTemplate.getUserId(), is(equalTo(template.getUserId())));
}