Exemplo n.º 1
0
        public void GetKeyLocationNonEmptyParamTest()
        {
            var target = new KeyLocationStrategy();

            Assert.AreEqual("foo", target.GetKeyLocation("foo"));
        }
Exemplo n.º 2
0
        public void GetKeyLocationBlankParamTest()
        {
            var target = new KeyLocationStrategy();

            Assert.IsFalse(string.IsNullOrWhiteSpace(target.GetKeyLocation(" ")));
        }