public void Should_be_possible_to_add_other_components_in_the_function()
 {
     ConcatFunctionComponent functionComponent = new ConcatFunctionComponent(null,null,null);
     LocalVariableObjectComponent objectComponent = new LocalVariableObjectComponent(null, null);
     functionComponent.AddComponent(objectComponent);
     Assert.IsTrue(functionComponent.QuantityOfComponents() == 1, "the quantity of component is not expected");
 }