Package org.sonar.api.resources

Examples of org.sonar.api.resources.Language


    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);
View Full Code Here

TOP

Related Classes of org.sonar.api.resources.Language

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.