public void ReferenceExprToVariable()
        {
            var actual   = SSTUtil.ReferenceExprToVariable("a");
            var expected = new ReferenceExpression
            {
                Reference = new VariableReference {
                    Identifier = "a"
                }
            };

            Assert.AreEqual(expected, actual);
        }