public void Should_be_possible_to_instantiate_an_EscapeRegexFunctionComponent()
        {
            var function = new EscapeRegexFunctionType() { Item = new LiteralComponentType() } ;
            var localVariable = new VariablesTypeVariableLocal_variable() { Item = function };

            var factory = new LocalVariableComponentsFactory(null, null);
            var variableComponent = factory.GetLocalVariableComponent(localVariable);

            Assert.IsInstanceOfType(variableComponent, typeof(EscapeRegexFunctionComponent));
            Assert.IsTrue(((EscapeRegexFunctionComponent)variableComponent).QuantityOfComponents() == 1, "the quantity of component is not expected");
        }
 public OvalEscapeRegexBuilder(OvalLocalVariableBuilder localVariableBuilder)
 {
     this.localVariableBuilder = localVariableBuilder;
     this.escapeRegexFunction = new EscapeRegexFunctionType();
 }