Esempio n. 1
0
        public void TestStaticExists()
        {
            var res = QFileInfo.Exists(_testFilePath1.FullName);

            Assert.IsTrue(res);

            var res2 = QFileInfo.Exists(_testFilePath1.FullName + "sss");

            Assert.IsFalse(res2);
        }
Esempio n. 2
0
 public void TestExists()
 {
     Assert.IsTrue(_fileInfo.Exists());
 }