assertEquals(expected, actual);
}
public void testVisitNullHandler() throws Exception
{
VFSContext context = getVFSContext("children");
MockVirtualFileHandlerVisitor visitor = new MockVirtualFileHandlerVisitor();
try
{
context.visit(null, visitor);
fail("Should not be here!");
}
catch (Throwable t)
{
checkThrowable(IllegalArgumentException.class, t);