public void Customer_CreateCustomer_CheckName()
        {
            string expectedName = "Harry";

            Customer result     = new Customer("Harry");
            string   resultName = result.GetName();

            Assert.AreEqual(expectedName, resultName);
        }