public void TestIntegerValue() { IntegerVariable var = new IntegerVariable(); var.CheckForStore(1); Assert.AreEqual(1, var.Value); }
public void TestIntegerVariableNullValue() { IntegerVariable var = new IntegerVariable(); bool actual = var.CheckForStore(null); Assert.IsFalse(actual); }
public void TestStringIntegerValue() { IntegerVariable var = new IntegerVariable(); Assert.IsTrue(var.CheckForStore("123")); }
public void TestNotIntegerValue() { IntegerVariable var = new IntegerVariable(); Assert.IsFalse(var.CheckForStore("not int")); }
public void TestOverflowIntegerValue() { IntegerVariable var = new IntegerVariable(); Assert.IsFalse(var.CheckForStore(9999999999999999)); }