Пример #1
0
        public void KeyLocationExistsTest()
        {
            var target = new KeyFile();

            Assert.IsTrue(target.KeyLocationExists("Readme.txt"));
            Assert.IsFalse(target.KeyLocationExists("DontReadme.txt"));
        }
Пример #2
0
        public void KeyLocationExistsBlankTest()
        {
            var target = new KeyFile();

            Assert.IsFalse(target.KeyLocationExists(" \t"));
        }
Пример #3
0
        public void KeyLocationExistsEmptyTest()
        {
            var target = new KeyFile();

            Assert.IsFalse(target.KeyLocationExists(""));
        }