validator.validateSourceMap(compilationResult, new File(ONE_IMPORT_MAPDATA_NO_RELATIVIZATION), URIUtils.changeSuffix(ONE_IMPORT_LESS_FILE, Constants.CSS_SUFFIX));
}
@Test
public void fileIncludeLessFiles() throws Less4jException {
LessCompiler compiler = new DefaultLessCompiler();
Configuration configuration = new Configuration();
configuration.getSourceMapConfiguration().setIncludeSourcesContent(true);
CompilationResult compilationResult = compiler.compile(ONE_IMPORT_LESS_FILE, configuration);
assertNotNull(compilationResult.getCss());
assertNotNull(compilationResult.getSourceMap());
assertLinksSourceMap(compilationResult.getCss(), toFullMapSuffix());