Package org.sonar.api.measures

Examples of org.sonar.api.measures.FileLinesContextFactory


public class FileLinesVisitorTest {

  @Test
  public void test() {
    FileLinesContextFactory fileLinesContextFactory = mock(FileLinesContextFactory.class);

    FileLinesContext fileLinesContext = mock(FileLinesContext.class);
    when(fileLinesContextFactory.createFor(any(Resource.class))).thenReturn(fileLinesContext);

    ProjectFileSystem fs = mock(ProjectFileSystem.class);
    when(fs.getSourceDirs()).thenReturn(ImmutableList.of(new File("src/test/resources/")));

    Project project = new Project("key");
View Full Code Here

TOP

Related Classes of org.sonar.api.measures.FileLinesContextFactory

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.