public void DeleteContactTest(string id, HttpStatusCode code)
        {
            var test = new ContactsRequest();

            test.DeleteContact(id, code);
        }
        public void GetContactTest(string parameter_type, string parameter_content, HttpStatusCode code)
        {
            var test = new ContactsRequest();

            test.GetContact(parameter_type, parameter_content, code);
        }
        //[InlineData("", "Demis Meneghetti", "351912978005", "351222333444", HttpStatusCode.NotFound)]
        //[InlineData("56d5efa8c82593800291c02b", "Camila Meneghetti", "", "", HttpStatusCode.NoContent)]
        //[InlineData("5c82550d7bc4cd822cc86e20", "", "", "", HttpStatusCode.NoContent)]
        public void PutContactTest(string id, string name, string mobilephone, string homephone, HttpStatusCode code, HttpResponseHeader httpStatus)
        {
            var test = new ContactsRequest();

            test.PutContact(id, name, mobilephone, homephone, code, httpStatus);
        }
        public void PostContactTest(string name, string mobilephone, string homephone, HttpStatusCode code)
        {
            var test = new ContactsRequest();

            test.PostContact(name, mobilephone, homephone, code);
        }