public void isExistTest3()
        {
            UserVariable target = new UserVariable();

            target.set("name", "project", "val");
            Assert.AreEqual(true, target.isExist("name", "project"));
        }
        public void isExistTest2()
        {
            UserVariable target = new UserVariable();

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