Package org.sonar.api.resources

Examples of org.sonar.api.resources.AbstractLanguage


  public void prepare() throws IOException {
    baseDir = temp.newFolder();
    sonarIndex = mock(SonarIndex.class);
    sourcePersister = mock(SourcePersister.class);
    project = new Project("myProject");
    cobolLanguage = new AbstractLanguage("cobol") {
      @Override
      public String[] getFileSuffixes() {
        return new String[] {"cbl"};
      }
    };
View Full Code Here

TOP

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

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.