// TODO how to test a real hidden file across platforms?
public void testChildIsHidden() throws Exception
{
VFSContext context = getVFSContext("simple");
VirtualFileHandler root = context.getRoot();
VirtualFileHandler child = context.findChild(root, "child");
assertFalse(child.isHidden());
}
public void testIsHiddenClosed() throws Exception
{