@Test
public void shouldCalculateBooleanYesForInProfile() {
when(report.isInProfile()).thenReturn(true);
calculator = new ProfileMetricCalculator(ontology, profile);
ProfileMetricValue value = calculator.computeValue();
assertThat(value.isInProfile(), is(true));
}