Exemplo n.º 1
0
        public void CreateSDFFileTest()
        {
            string filePath = "PTDatabase.sdf";
            bool   expected = true;
            bool   actual   = PTDatabase.CreateSDFFile(filePath);

            Assert.AreEqual(expected, actual);
            Assert.AreEqual(expected, File.Exists(filePath));
            File.Delete(filePath);
        }