예제 #1
0
        public void ValidLoginCheck()
        {
            TfsTeamWorkItemService service = new TfsTeamWorkItemService();
            bool success = service.Authenticate(Settings.tfsUrl, "jchakraborty", "jchakraborty", "ids");

            Assert.IsTrue(success);
        }
예제 #2
0
        public void InvalidLoginCheck()
        {
            TfsTeamWorkItemService service = new TfsTeamWorkItemService();

            service.Authenticate(Settings.tfsUrl, "jchakraborty", "jchakraborty1", "ids");
        }