Example #1
0
        public void TestWithTooManyParamsIntInt()
        {
            OperationEvaluationContext ctx = CreateContext();

            ValueEval[] args   = new ValueEval[] { ctx.GetRefEval(0, 0), ctx.GetRefEval(0, 1), ctx.GetRefEval(0, 1) };
            ValueEval   result = new Dec2Bin().Evaluate(args, -1, -1);

            Assert.AreEqual(typeof(ErrorEval), result.GetType());
            Assert.AreEqual(ErrorEval.VALUE_INVALID, result);
        }
Example #2
0
        public void TestWithToshortPlaces()
        {
            OperationEvaluationContext ctx = CreateContext();

            ValueEval[] args   = new ValueEval[] { ctx.GetRefEval(0, 0), ctx.GetRefEval(0, 3) };
            ValueEval   result = new Dec2Bin().Evaluate(args, -1, -1);

            Assert.AreEqual(typeof(ErrorEval), result.GetType());
            Assert.AreEqual(ErrorEval.NUM_ERROR, result);
        }
Example #3
0
        public void TestWithPlaces()
        {
            OperationEvaluationContext ctx = CreateContext();

            ValueEval[] args   = new ValueEval[] { ctx.GetRefEval(0, 0), ctx.GetRefEval(0, 1) };
            ValueEval   result = new Dec2Bin().Evaluate(args, ctx);

            Assert.AreEqual(typeof(StringEval), result.GetType(), "Had: " + result.ToString());
            // TODO: documentation and behavior do not match here!
            Assert.AreEqual("1101", ((StringEval)result).StringValue);
        }
Example #4
0
        public void TestEvalOperationEvaluationContext()
        {
            OperationEvaluationContext ctx = CreateContext();

            ValueEval[] args   = new ValueEval[] { ctx.GetRefEval(0, 0) };
            ValueEval   result = new Hex2Dec().Evaluate(args, ctx);

            Assert.AreEqual(typeof(NumberEval), result.GetType());
            Assert.AreEqual("0", ((NumberEval)result).StringValue);
        }
Example #5
0
        public void TestWithErrorPlaces()
        {
            OperationEvaluationContext ctx = CreateContext();

            ValueEval[] args   = new ValueEval[] { ctx.GetRefEval(0, 0), ErrorEval.NULL_INTERSECTION };
            ValueEval   result = new Dec2Bin().Evaluate(args, -1, -1);

            Assert.AreEqual(typeof(ErrorEval), result.GetType());
            Assert.AreEqual(ErrorEval.NULL_INTERSECTION, result);
        }
Example #6
0
        public void TestRefs()
        {
            OperationEvaluationContext ctx = CreateContext();

            ValueEval[] args   = new ValueEval[] { ctx.GetRefEval(0, 0) };
            ValueEval   result = new Dec2Bin().Evaluate(args, -1, -1);

            Assert.AreEqual(result.GetType(), typeof(StringEval), "Had: " + result.ToString());
            Assert.AreEqual("1101", ((StringEval)result).StringValue);
        }