public void TestCombineRetrieveSuburbURL()
        {
            SearchDataService s        = new SearchDataService();
            string            postcode = "2000";
            string            expected = "2000/api.xml";
            string            result   = s.CombineRetrieveSuburbURL(postcode);

            Assert.AreEqual(expected, result);
        }