@Test
public void dirExistsShouldReturnFalseIfTheDirectoryDoesNotExist()
{
Node node = new TestNode(mockRootNode, null, new File(TEST_DIR, "non-existent-directory"));
assertFalse(node.dirExists());
}
@Test
public void dirExistsShouldNotThrowAnExceptionIfANullDirWasProvided()
{