Package org.sonar.batch.scan.filesystem

Examples of org.sonar.batch.scan.filesystem.DefaultModuleFileSystem


      public void concreteExecute(MavenProject pom, String goal) {
        pom.addCompileSourceRoot("src/java");
      }
    };
    Project foo = new Project("foo");
    DefaultModuleFileSystem fs = mock(DefaultModuleFileSystem.class);
    executor.execute(foo, fs, new AddSourceMavenPluginHandler());

    verify(fs, never()).resetDirs(any(File.class), any(File.class), anyList(), anyList(), anyList());
  }
View Full Code Here

TOP

Related Classes of org.sonar.batch.scan.filesystem.DefaultModuleFileSystem

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.