public async Task TestTestListAddresses()
        {
            // Parameters for the API call
            int?   page        = null;
            int?   pagesize    = null;
            string addressid   = null;
            string dateCreated = null;

            // Perform API call
            string result = null;

            try
            {
                result = await controller.CreateListAddressesAsync(page, pagesize, addressid, dateCreated);
            }
            catch (APIException) {};

            // Test response code
            Assert.AreEqual(200, httpCallBackHandler.Response.StatusCode,
                            "Status should be 200");
        }