AjTalk.Tests.LibraryEvaluateTests.BooleanIfNilIfNotNil C# (CSharp) Method

BooleanIfNilIfNotNil() private method

private BooleanIfNilIfNotNil ( ) : void
return void
        public void BooleanIfNilIfNotNil()
        {
            Assert.AreEqual(null, this.Evaluate("false ifNil: [1]"));
            Assert.AreEqual(1, this.Evaluate("true ifNotNil: [1]"));
        }