Ejemplo n.º 1
0
        public void FileWorker_CreateBd()
        {
            bool expected;
            bool actual;

            fw.CreateBd("test_bdname");

            expected = true;
            actual   = File.Exists(Variables.path + "test_bdname" + ".bd");

            File.Delete(Variables.path + "test_bdname" + ".bd");
            Assert.AreEqual(expected, actual);
        }