public void BooleanGlobalPropertyWithNoDefaultStartsFalse() { ValueReference propertyReference = engine.GetGlobalProperty("globalBooleanNoStartingValue"); Assert.IsFalse(propertyReference.ValueAsBool()); }
public void BooleanGlobalPropertyWithDefaultReturnsThatDefault() { ValueReference propertyReference = engine.GetGlobalProperty("globalBoolean"); Assert.IsTrue(propertyReference.ValueAsBool()); }