public void LoginSfg()
        {
            CustomerService.CustomerService svc = new Tests.CustomerService.CustomerService();
            string hen = Cryptography.Encrypt256("craux");
            string hep = Cryptography.Encrypt256("andrewharper");

            CustomerService.ResponseObject actual = svc.Login(hen, hep, false);
            Assert.AreEqual(true, actual != null);
        }
Beispiel #2
0
 public void LoginSfg()
 {
     CustomerService.CustomerService svc = new Tests.CustomerService.CustomerService();
     string hen = Cryptography.Encrypt256("craux");
     string hep = Cryptography.Encrypt256("andrewharper");
     CustomerService.ResponseObject actual = svc.Login(hen, hep, false);
     Assert.AreEqual(true, actual != null);
 }