.compare(hAccountRole1, hAccountRole1)).isEqualTo(0);
}
@Test
public void ProjectTypeCompare() throws Exception {
ProjectType projectType1 = ProjectType.File;
ProjectType projectType2 = ProjectType.Gettext;
ProjectType projectType3 = null;
assertThat(ComparatorUtil.PROJECT_TYPE_COMPARATOR
.compare(projectType1, projectType1)).isEqualTo(0);
assertThat(ComparatorUtil.PROJECT_TYPE_COMPARATOR
.compare(projectType1, projectType2)).isEqualTo(-1);