forked from exercism/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBobTest.java
More file actions
157 lines (136 loc) · 3.07 KB
/
BobTest.java
File metadata and controls
157 lines (136 loc) · 3.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
import org.junit.Test;
import org.junit.Ignore;
import static org.junit.Assert.*;
public class BobTest {
private final Bob bob = new Bob();
@Test
public void saySomething() {
assertEquals(
"Whatever.",
bob.hey("Tom-ay-to, tom-aaaah-to.")
);
}
@Ignore
@Test
public void shouting() {
assertEquals(
"Whoa, chill out!",
bob.hey("WATCH OUT!")
);
}
@Ignore
@Test
public void askingAQuestion() {
assertEquals(
"Sure.",
bob.hey("Does this cryogenic chamber make me look fat?")
);
}
@Ignore
@Test
public void askingANumericQuestion() {
assertEquals(
"Sure.",
bob.hey("You are, what, like 15?")
);
}
@Ignore
@Test
public void talkingForcefully() {
assertEquals(
"Whatever.",
bob.hey("Let's go make out behind the gym!")
);
}
@Ignore
@Test
public void usingAcronymsInRegularSpeech() {
assertEquals(
"Whatever.", bob.hey("It's OK if you don't want to go to the DMV.")
);
}
@Ignore
@Test
public void forcefulQuestions() {
assertEquals(
"Whoa, chill out!", bob.hey("WHAT THE HELL WERE YOU THINKING?")
);
}
@Ignore
@Test
public void shoutingNumbers() {
assertEquals(
"Whoa, chill out!", bob.hey("1, 2, 3 GO!")
);
}
@Ignore
@Test
public void onlyNumbers() {
assertEquals(
"Whatever.", bob.hey("1, 2, 3")
);
}
@Ignore
@Test
public void questionWithOnlyNumbers() {
assertEquals(
"Sure.", bob.hey("4?")
);
}
@Ignore
@Test
public void shoutingWithSpecialCharacters() {
assertEquals(
"Whoa, chill out!", bob.hey("ZOMG THE %^*@#$(*^ ZOMBIES ARE COMING!!11!!1!")
);
}
@Ignore
@Test
public void shoutingWithUmlauts() {
assertEquals(
"Whoa, chill out!", bob.hey("\u00dcML\u00c4\u00dcTS!")
);
}
@Ignore
@Test
public void calmlySpeakingWithUmlauts() {
assertEquals(
"Whatever.", bob.hey("\u00dcML\u00e4\u00dcTS!")
);
}
@Ignore
@Test
public void shoutingWithNoExclamationMark() {
assertEquals(
"Whoa, chill out!", bob.hey("I HATE YOU")
);
}
@Ignore
@Test
public void statementContainingQuestionMark() {
assertEquals(
"Whatever.", bob.hey("Ending with ? means a question.")
);
}
@Ignore
@Test
public void prattlingOn() {
assertEquals(
"Sure.", bob.hey("Wait! Hang on. Are you going to be OK?")
);
}
@Ignore
@Test
public void silence() {
assertEquals(
"Fine. Be that way!", bob.hey("")
);
}
@Ignore
@Test
public void prolongedSilence() {
assertEquals(
"Fine. Be that way!", bob.hey(" ")
);
}
}