Exemple #1
0
        public void TestEvaluateConstant()
        {
            var constant = new Integer(42);

            Assert.Equal(constant, constant.Evaluate(new Environment()));
            Assert.Equal(42L, constant.Source);
        }