assertThat(result.getData()).isEqualTo("java=20;xoo=200");
}
@Test
public void not_save_language_distribution_on_file_if_no_measure() {
Language language = mock(Language.class);
when(language.getKey()).thenReturn("xoo");
when(resource.getScope()).thenReturn(Scopes.FILE);
when(resource.getLanguage()).thenReturn(language);
when(context.getMeasure(CoreMetrics.NCLOC)).thenReturn(null);