@Test
public void testAbsoluteFilePath() {
try {
String canonicalPath = new File(".").getCanonicalPath();
File f =
new FileProtocolHandler().downloadResource("file:"
+ canonicalPath + "/" + TEST_FILE_PATH,
"test.belns");
tempFiles.add(f);
} catch (Exception e) {
Assert.fail("Error reading relative file path: " + e.getMessage());