public void convertWithUnMappedConfAndSkipFalse() {
final ModuleDependency dependency4 = createDependency("org4", "name4", "rev4");
final Configuration unmappedConfigurationStub = createNamedConfigurationStubWithDependencies("unmappedConf", dependency4);
context.checking(new Expectations() {{
allowing(conf2ScopeMappingContainerMock).isSkipUnmappedConfs(); will(returnValue(false));
allowing(conf2ScopeMappingContainerMock).getMapping(toSet(unmappedConfigurationStub)); will(returnValue(new Conf2ScopeMapping(null, unmappedConfigurationStub, null)));
}});
List<org.apache.maven.model.Dependency> actualMavenDependencies = dependenciesConverter.convert(conf2ScopeMappingContainerMock, toSet(
compileConfStub, testCompileConfStub, unmappedConfigurationStub));
assertEquals(4, actualMavenDependencies.size());
checkCommonMavenDependencies(actualMavenDependencies);