Esempio n. 1
0
 public void isExistTest3()
 {
     UserVariable target = new UserVariable();
     target.set("name", "project", "val");
     Assert.AreEqual(true, target.isExist("name", "project"));
 }
Esempio n. 2
0
 public void isExistTest2()
 {
     UserVariable target = new UserVariable();
     Assert.AreEqual(false, target.isExist("name"));
 }