예제 #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"));
 }