public void StorageDeviceExistsTestNoStorageDevice()
        {
            SqlCeArchivist a = new SqlCeArchivist(
                TestContext.TestRunDirectory + "\\d.sdf");

            // Delete the database.
            if (File.Exists(TestContext.TestRunDirectory + "\\d.sdf"))
            {
                File.Delete(TestContext.TestRunDirectory + "\\d.sdf");
            }

            Assert.IsFalse(a.StorageDeviceExists());
        }