Ejemplo n.º 1
0
        public void KeyLocationExistsTest()
        {
            var target = new KeyFile();

            Assert.IsTrue(target.KeyLocationExists("Readme.txt"));
            Assert.IsFalse(target.KeyLocationExists("DontReadme.txt"));
        }
Ejemplo n.º 2
0
        public void KeyLocationExistsBlankTest()
        {
            var target = new KeyFile();

            Assert.IsFalse(target.KeyLocationExists(" \t"));
        }
Ejemplo n.º 3
0
        public void KeyLocationExistsEmptyTest()
        {
            var target = new KeyFile();

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