forked from exercism/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTwelveDaysTest.java
More file actions
207 lines (189 loc) · 11 KB
/
Copy pathTwelveDaysTest.java
File metadata and controls
207 lines (189 loc) · 11 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat;
public class TwelveDaysTest {
private TwelveDays twelveDays;
@BeforeEach
public void setup() {
twelveDays = new TwelveDays();
}
@Test
@DisplayName("first day a partridge in a pear tree")
public void testVerseOne() {
String expectedVerseOne = "On the first day of Christmas my true love gave to me: " +
"a Partridge in a Pear Tree.\n";
assertThat(twelveDays.verse(1)).isEqualTo(expectedVerseOne);
}
@Disabled("Remove to run test")
@Test
@DisplayName("second day two turtle doves")
public void testVerseTwo() {
String expectedVerseTwo = "On the second day of Christmas my true love gave to me: two Turtle Doves, " +
"and a Partridge in a Pear Tree.\n";
assertThat(twelveDays.verse(2)).isEqualTo(expectedVerseTwo);
}
@Disabled("Remove to run test")
@Test
@DisplayName("third day three french hens")
public void testVerseThree() {
String expectedVerseThree = "On the third day of Christmas my true love gave to me: three French Hens, " +
"two Turtle Doves, and a Partridge in a Pear Tree.\n";
assertThat(twelveDays.verse(3)).isEqualTo(expectedVerseThree);
}
@Disabled("Remove to run test")
@Test
@DisplayName("fourth day four calling birds")
public void testVerseFour() {
String expectedVerseFour = "On the fourth day of Christmas my true love gave to me: four Calling Birds, " +
"three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n";
assertThat(twelveDays.verse(4)).isEqualTo(expectedVerseFour);
}
@Disabled("Remove to run test")
@Test
@DisplayName("fifth day five gold rings")
public void testVerseFive() {
String expectedVerseFive = "On the fifth day of Christmas my true love gave to me: five Gold Rings, " +
"four Calling Birds, three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n";
assertThat(twelveDays.verse(5)).isEqualTo(expectedVerseFive);
}
@Disabled("Remove to run test")
@Test
@DisplayName("sixth day six geese-a-laying")
public void testVerseSix() {
String expectedVerseSix = "On the sixth day of Christmas my true love gave to me: six Geese-a-Laying, " +
"five Gold Rings, four Calling Birds, three French Hens, two Turtle Doves, " +
"and a Partridge in a Pear Tree.\n";
assertThat(twelveDays.verse(6)).isEqualTo(expectedVerseSix);
}
@Disabled("Remove to run test")
@Test
@DisplayName("seventh day seven swans-a-swimming")
public void testVerseSeven() {
String expectedVerseSeven = "On the seventh day of Christmas my true love gave to me: " +
"seven Swans-a-Swimming, six Geese-a-Laying, five Gold Rings, four Calling Birds, three French Hens, " +
"two Turtle Doves, and a Partridge in a Pear Tree.\n";
assertThat(twelveDays.verse(7)).isEqualTo(expectedVerseSeven);
}
@Disabled("Remove to run test")
@Test
@DisplayName("eighth day eight maids-a-milking")
public void testVerseEight() {
String expectedVerseEight = "On the eighth day of Christmas my true love gave to me: eight Maids-a-Milking," +
" seven Swans-a-Swimming, six Geese-a-Laying, five Gold Rings, four Calling Birds, " +
"three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n";
assertThat(twelveDays.verse(8)).isEqualTo(expectedVerseEight);
}
@Disabled("Remove to run test")
@Test
@DisplayName("ninth day nine ladies dancing")
public void testVerseNine() {
String expectedVerseNine = "On the ninth day of Christmas my true love gave to me: nine Ladies Dancing, " +
"eight Maids-a-Milking, seven Swans-a-Swimming, six Geese-a-Laying, five Gold Rings, " +
"four Calling Birds, three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n";
assertThat(twelveDays.verse(9)).isEqualTo(expectedVerseNine);
}
@Disabled("Remove to run test")
@Test
@DisplayName("tenth day ten lords-a-leaping")
public void testVerseTen() {
String expectedVerseTen = "On the tenth day of Christmas my true love gave to me: ten Lords-a-Leaping, " +
"nine Ladies Dancing, eight Maids-a-Milking, seven Swans-a-Swimming, six Geese-a-Laying, " +
"five Gold Rings, four Calling Birds, three French Hens, two Turtle Doves, " +
"and a Partridge in a Pear Tree.\n";
assertThat(twelveDays.verse(10)).isEqualTo(expectedVerseTen);
}
@Disabled("Remove to run test")
@Test
@DisplayName("eleventh day eleven pipers piping")
public void testVerseEleven() {
String expectedVerseEleven = "On the eleventh day of Christmas my true love gave to me: " +
"eleven Pipers Piping, ten Lords-a-Leaping, nine Ladies Dancing, eight Maids-a-Milking, " +
"seven Swans-a-Swimming, six Geese-a-Laying, five Gold Rings, four Calling Birds, " +
"three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n";
assertThat(twelveDays.verse(11)).isEqualTo(expectedVerseEleven);
}
@Disabled("Remove to run test")
@Test
@DisplayName("twelfth day twelve drummers drumming")
public void testVerseTwelve() {
String expectedVerseTwelve = "On the twelfth day of Christmas my true love gave to me: " +
"twelve Drummers Drumming, eleven Pipers Piping, ten Lords-a-Leaping, nine Ladies Dancing, " +
"eight Maids-a-Milking, seven Swans-a-Swimming, six Geese-a-Laying, five Gold Rings, " +
"four Calling Birds, three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n";
assertThat(twelveDays.verse(12)).isEqualTo(expectedVerseTwelve);
}
@Disabled("Remove to run test")
@Test
@DisplayName("recites first three verses of the song")
public void testFirstThreeVerses() {
String expectedVersesOneToThree = "On the first day of Christmas my true love gave to me: " +
"a Partridge in a Pear Tree.\n\n" +
"On the second day of Christmas my true love gave to me: two Turtle Doves, " +
"and a Partridge in a Pear Tree.\n\n" +
"On the third day of Christmas my true love gave to me: three French Hens, two Turtle Doves, " +
"and a Partridge in a Pear Tree.\n";
assertThat(twelveDays.verses(1, 3)).isEqualTo(expectedVersesOneToThree);
}
@Disabled("Remove to run test")
@Test
@DisplayName("recites three verses from the middle of the song")
public void testFourthToSixthVerses() {
String expectedVersesFourToSix = "On the fourth day of Christmas my true love gave to me: " +
"four Calling Birds, three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n\n" +
"On the fifth day of Christmas my true love gave to me: five Gold Rings, four Calling Birds, " +
"three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n\n" +
"On the sixth day of Christmas my true love gave to me: six Geese-a-Laying, five Gold Rings, " +
"four Calling Birds, three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n";
assertThat(twelveDays.verses(4, 6)).isEqualTo(expectedVersesFourToSix);
}
@Disabled("Remove to run test")
@Test
@DisplayName("recites the whole song")
public void testSingWholeSong() {
String expectedSong = "On the first day of Christmas my true love gave to me: a Partridge in a Pear Tree.\n" +
"\n" +
"On the second day of Christmas my true love gave to me: two Turtle Doves, " +
"and a Partridge in a Pear Tree.\n" +
"\n" +
"On the third day of Christmas my true love gave to me: three French Hens, two Turtle Doves, " +
"and a Partridge in a Pear Tree.\n" +
"\n" +
"On the fourth day of Christmas my true love gave to me: four Calling Birds, three French Hens, " +
"two Turtle Doves, and a Partridge in a Pear Tree.\n" +
"\n" +
"On the fifth day of Christmas my true love gave to me: five Gold Rings, four Calling Birds, " +
"three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n" +
"\n" +
"On the sixth day of Christmas my true love gave to me: six Geese-a-Laying, five Gold Rings, " +
"four Calling Birds, three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n" +
"\n" +
"On the seventh day of Christmas my true love gave to me: seven Swans-a-Swimming, " +
"six Geese-a-Laying, five Gold Rings, four Calling Birds, three French Hens, two Turtle Doves, " +
"and a Partridge in a Pear Tree.\n" +
"\n" +
"On the eighth day of Christmas my true love gave to me: eight Maids-a-Milking, " +
"seven Swans-a-Swimming, six Geese-a-Laying, five Gold Rings, four Calling Birds, " +
"three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n" +
"\n" +
"On the ninth day of Christmas my true love gave to me: nine Ladies Dancing, eight Maids-a-Milking," +
" seven Swans-a-Swimming, six Geese-a-Laying, five Gold Rings, four Calling Birds, " +
"three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n" +
"\n" +
"On the tenth day of Christmas my true love gave to me: ten Lords-a-Leaping, nine Ladies Dancing," +
" eight Maids-a-Milking, seven Swans-a-Swimming, six Geese-a-Laying, five Gold Rings, " +
"four Calling Birds, three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n" +
"\n" +
"On the eleventh day of Christmas my true love gave to me: eleven Pipers Piping, " +
"ten Lords-a-Leaping, nine Ladies Dancing, eight Maids-a-Milking, seven Swans-a-Swimming, " +
"six Geese-a-Laying, five Gold Rings, four Calling Birds, three French Hens, two Turtle Doves, " +
"and a Partridge in a Pear Tree.\n" +
"\n" +
"On the twelfth day of Christmas my true love gave to me: twelve Drummers Drumming, " +
"eleven Pipers Piping, ten Lords-a-Leaping, nine Ladies Dancing, eight Maids-a-Milking, " +
"seven Swans-a-Swimming, six Geese-a-Laying, five Gold Rings, four Calling Birds, " +
"three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n";
assertThat(twelveDays.sing()).isEqualTo(expectedSong);
}
}