}
@Test
public void testParentProperties() throws Exception {
Dependency dep = new Dependency("org.jboss.resteasy.mobile:resteasy-mobile:1.0.0");
Solver solver = solve(dep);
// [httpcomponents-client:4.0.3]
// ${httpcore.version} = 4.0.1
// [httpclient:4.0.3]
// [httpcore:${httpcore.version}]
// [resteasy-mobile:1.0.0]
Set<Dependency> deps = solver.getDependencies(Scope.compile);
Dependency httpcore = new Dependency("org.apache.httpcomponents:httpcore:4.0.1");
assertTrue(deps.contains(httpcore));
}