示例#1
0
 public void GivenUserWithPassword(string user, string password)
 {
     blazeUser = new BlazeUser(user, password);
 }
示例#2
0
        public void GivenARandomUserWithPassword(string password)
        {
            string username = "******" + System.DateTime.Now.Day + System.DateTime.Now.Month + System.DateTime.Now.Year + System.DateTime.Now.Hour + System.DateTime.Now.Minute + System.DateTime.Now.Second + "@gmail.com";

            blazeUser = new BlazeUser(username, password);
        }