public void InsertCustomerTest()
 {
     CustomerMgtService target = new CustomerMgtService(); // TODO: Initialize to an appropriate value
     CustomerInfo entity = new CustomerInfo()
     {
         CustomerID = "*****@*****.**",
         Password = "******",
         Status = CustomerStatus.Valid,
         RegIP = "192.168.1.104"
     };
     var customerSysNo = CustomerMgtService.Instance.InsertCustomer(entity);
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     actual = target.InsertCustomer(entity);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }