Example #1
0
        public void FlowNodeExpressionExpectedIsCSharpValue()
        {
            // BUG 9304 - 2013.05.08 - TWR - designer/runtime error can be removed by converting the underlying expression to a CSharpValue

            var flowNode = new TestFlowNodeActivity <string>();
            var expected = typeof(CSharpValue <string>);
            var actual   = flowNode.GetTheExpression().GetType();

            Assert.AreEqual(expected, actual);
        }