Exemple #1
0
 public void Using_acronyms_in_regular_search()
 {
     Assert.Equal("Whatever.", Bob.Hey("It's OK if you don't want to go to the DMV."));
 }
Exemple #2
0
 public void Forceful_questions()
 {
     Assert.Equal("Whoa, chill out!", Bob.Hey("WHAT THE HELL WERE YOU THINKING?"));
 }
Exemple #3
0
 public void Asking_a_numeric_question()
 {
     Assert.Equal("Sure.", Bob.Hey("You are, what, like 15?"));
 }
Exemple #4
0
 public void Talking_forcefully()
 {
     Assert.Equal("Whatever.", Bob.Hey("Let's go make out behind the gym!"));
 }
Exemple #5
0
 public void Asking_a_question_with_a_trailing_space()
 {
     Assert.Equal("Sure.", Bob.Hey("Do I like my  spacebar  too much?  "));
 }
Exemple #6
0
 public void Asking_a_question()
 {
     Assert.Equal("Sure.", Bob.Hey("Does this cryogenic chamber make me look fat?"));
 }
Exemple #7
0
 public void Shouting()
 {
     Assert.Equal("Whoa, chill out!", Bob.Hey("WATCH OUT"));
 }
Exemple #8
0
 public void Multiple_line_question()
 {
     Assert.Equal("Whatever.", Bob.Hey("Does this cryogenic chamber make me look fat?\nno"));
 }
Exemple #9
0
 public void Prolonged_silence()
 {
     Assert.Equal("Fine. Be that way!", Bob.Hey("    "));
 }