public void Calling_a_function_with_a_retval_with_a_param_defined_in_prototype_passes_the_parameter()
        {
            dynamic actual = DynamicValue.MethodWithReturnValueSingleParameter(42);

            Assert.AreEqual(42, actual);
        }
        public void Calling_a_function_with_a_retval_with_a_param_defined_in_prototype_is_called()
        {
            dynamic result = DynamicValue.MethodWithReturnValueSingleParameter(42);

            Assert.True(DynamicValue.MethodWithReturnValueSingleParameterWasCalled);
        }