* Getting a random access file in read mode for a non-existing file
* should fail, and the file shouldn't be created.
*/
public void testGetRAFNonExistingReadMode()
throws FileNotFoundException {
DataStore store = getStore();
VirtualFile vFile = new VirtualFile("aNewFile.txt", store);
assertFalse(vFile.exists());
try {
vFile.getRandomAccessFile("r");
fail("Cannot read from a non-exsiting file");