Пример #1
0
        public void AuthenticationResultTrue()
        {
            AuthenticationRequest aq = new AuthenticationRequest();

            aq.UserName = "******";
            aq.Password = "******";
            aq.Domain   = "localhost";

            AuthenticationResponse ar = auth.Authenticate(aq);

            Assert.IsTrue(ar.Result);
        }