File vfsRoot = linkFile.getParentFile();
assertNotNull("vfs/links/test-link.war.vfslink.properties", linkURL);
VFS vfs = VFS.getVFS(vfsRoot.toURI());
// We should find the test-link.war the link represents
VirtualFile war = vfs.findChild("test-link.war");
assertNotNull("war", war);
// Validate the WEB-INF/classes child link
VirtualFile classes = war.findChild("WEB-INF/classes");
String classesName = classes.getName();