public void Test_IsNotNullAndExists() { IAbsolutePath path = null; Assert.IsFalse(path.IsNotNullAndExists()); path = @"L:\NonExistingDir".ToAbsoluteDirectoryPath(); Assert.IsFalse(path.IsNotNullAndExists()); }