AjTalk.Tests.LibraryEvaluateTests.BooleanIfNilIfNotNil C# (CSharp) 메소드

BooleanIfNilIfNotNil() 개인적인 메소드

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