コード例 #1
0
        public void isExistTest3()
        {
            UserVariable target = new UserVariable();

            target.set("name", "project", "val");
            Assert.AreEqual(true, target.isExist("name", "project"));
        }
コード例 #2
0
        public void isExistTest2()
        {
            UserVariable target = new UserVariable();

            Assert.AreEqual(false, target.isExist("name"));
        }