}
/* Tests joining and unldaping */
public void test7() throws NamingException
{
LdapSparqlMap map = new LdapSparqlMap(config);
map.addTriple(Triple.create("?person http://xmlns.com/foaf/0.1/mbox mailto:martin.merry@hp.com"));
map.addTriple(Triple.create("?underling http://jena.hpl.hp.com/schemas/hpcorp#manager ?person"));
map.addTriple(Triple.create("?underling http://xmlns.com/foaf/0.1/name ?name"));
QueryIterator results = new QueryIterSingleton(new BindingRoot());
results = map.execute(results, null);
assertTrue("I got a result", results.hasNext());
while (results.hasNext())
{