コード例 #1
0
        public void GetKeyLocationNonEmptyParamTest()
        {
            var target = new KeyLocationStrategy();

            Assert.AreEqual("foo", target.GetKeyLocation("foo"));
        }
コード例 #2
0
        public void GetKeyLocationBlankParamTest()
        {
            var target = new KeyLocationStrategy();

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