瀏覽代碼

Update BobTest.java

Woah -> Whoa
Austin Lyons 12 年之前
父節點
當前提交
8ff7f7c7c5
共有 1 個文件被更改,包括 6 次插入6 次删除
  1. 6
    6
      bob/src/test/java/BobTest.java

+ 6
- 6
bob/src/test/java/BobTest.java 查看文件

16
     @Test
16
     @Test
17
     public void shouting() {
17
     public void shouting() {
18
         assertEquals(
18
         assertEquals(
19
-            "Woah, chill out!",
19
+            "Whoa, chill out!",
20
             bob.hey("WATCH OUT!")
20
             bob.hey("WATCH OUT!")
21
         );
21
         );
22
     }
22
     }
55
     @Test
55
     @Test
56
     public void forcefulQuestions() {
56
     public void forcefulQuestions() {
57
         assertEquals(
57
         assertEquals(
58
-            "Woah, chill out!", bob.hey("WHAT THE HELL WERE YOU THINKING?")
58
+            "Whoa, chill out!", bob.hey("WHAT THE HELL WERE YOU THINKING?")
59
         );
59
         );
60
     }
60
     }
61
 
61
 
62
     @Test
62
     @Test
63
     public void shoutingNumbers() {
63
     public void shoutingNumbers() {
64
         assertEquals(
64
         assertEquals(
65
-            "Woah, chill out!", bob.hey("1, 2, 3 GO!")
65
+            "Whoa, chill out!", bob.hey("1, 2, 3 GO!")
66
         );
66
         );
67
     }
67
     }
68
 
68
 
83
     @Test
83
     @Test
84
     public void shoutingWithSpecialCharacters() {
84
     public void shoutingWithSpecialCharacters() {
85
         assertEquals(
85
         assertEquals(
86
-            "Woah, chill out!", bob.hey("ZOMG THE %^*@#$(*^ ZOMBIES ARE COMING!!11!!1!")
86
+            "Whoa, chill out!", bob.hey("ZOMG THE %^*@#$(*^ ZOMBIES ARE COMING!!11!!1!")
87
         );
87
         );
88
     }
88
     }
89
 
89
 
90
     @Test
90
     @Test
91
     public void shoutingWithUmlauts() {
91
     public void shoutingWithUmlauts() {
92
         assertEquals(
92
         assertEquals(
93
-            "Woah, chill out!", bob.hey("\u00dcML\u00c4\u00dcTS!")
93
+            "Whoa, chill out!", bob.hey("\u00dcML\u00c4\u00dcTS!")
94
         );
94
         );
95
     }
95
     }
96
 
96
 
104
     @Test
104
     @Test
105
     public void shoutingWithNoExclamationMark() {
105
     public void shoutingWithNoExclamationMark() {
106
         assertEquals(
106
         assertEquals(
107
-            "Woah, chill out!", bob.hey("I HATE YOU")
107
+            "Whoa, chill out!", bob.hey("I HATE YOU")
108
         );
108
         );
109
     }
109
     }
110
 
110