*/
public void testCreatesFileManagerWIthHandlers()
{
Resource root = resourceInModel( "f rdf:type ja:FileManager" );
Assembler a = new FileManagerAssembler();
FileManager f = (FileManager) a.open( null, root );
List<Locator> wanted = IteratorCollection.iteratorToList( standardLocators() );
List<Locator> obtained = IteratorCollection.iteratorToList( f.locators() );
assertEquals( wanted.size(), obtained.size() );
assertEquals( wanted, obtained );
}