Esempio n. 1
0
        public void WhenIAuthenticateWith(string login, string password, string baseUrl)
        {
            StepHelper.InitializeYouTrackClient(baseUrl, login, password);

            try
            {
                StepHelper.GetSession().Login();
            }
            catch (RequestFailedException e)
            {
                Console.WriteLine("Exception catched: {0}", e);
            }
        }
Esempio n. 2
0
 public void ThenIAmNotAuthenticated()
 {
     Assert.IsFalse(StepHelper.GetSession().IsAuthenticated);
 }
Esempio n. 3
0
 public void ThenIAmAuthenticated()
 {
     Assert.IsTrue(StepHelper.GetSession().IsAuthenticated);
 }