Beispiel #1
0
        public void TestVerifyDetailsReturnsAGuidWithASuccesfulLoginPair()
        {
            string username = "******";
            string password = "******";
            string type_id  = "Account Manager";

            Guid g = cmd.VerifyDetails(username, password, type_id);

            Console.WriteLine(g);
            Assert.AreNotEqual(Guid.Empty, g);
        }
Beispiel #2
0
 public Guid Login(string username, string password, string type)
 {
     return(login.VerifyDetails(username, password, type));
 }