public void testCopyMechanism() throws Throwable
{
long seed = System.nanoTime();
URL url = getResource("/vfs/test");
VFS vfs = VFS.getVFS(url);
TempStore store = new MkdirTempStore(new DeleteOnExitTempStore(new MockTempStore(seed)));
vfs.setTempStore(store);
VirtualFile file = vfs.getChild("jar1.jar");
VirtualFile temp = VFSUtils.explode(file);
try
{