protected void SendAndReturnSimpleValue(IServiceFunctionTest test)
        {
            var result = test.SendAndReturnSimpleValue(3);

            if (result != 6)
            {
                throw new AssertionException();
            }
        }