public void TestFalseStringValue() { ByteVariable var = new ByteVariable(); var.CheckForStore("false"); Assert.IsFalse(var.CheckForStore("false")); }
public void TestByteVariableNullValue() { ByteVariable var = new ByteVariable(); bool actual = var.CheckForStore(null); Assert.IsFalse(actual); }
public void TestByteValue() { ByteVariable var = new ByteVariable(); byte actualVal = 1; var.CheckForStore(actualVal); Assert.AreEqual(1, var.Value); }