Skip to content

Commit a6687cd

Browse files
committed
Fine-Fine-tune commenting of parameters.
1 parent 0170ec7 commit a6687cd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

java-junit/src/test/java/org/codecop/Session5b_WordCounterRatioTest.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@
1515
public class Session5b_WordCounterRatioTest {
1616

1717
// TODO Add the needed annotations to run this test with all examples.
18-
18+
1919
@Test // keep
2020
// We want to test more cases for the ratio. Here is a table of test cases.
21-
@Parameters(// // drop
22-
// use /*
23-
{
21+
@Parameters( // drop
22+
// use /*
23+
{ //
2424
"green, green, 1.0", //
2525
"green bar green, green, 0.66", //
2626
"green bar green bar, green, 0.5", //
2727
"green bar green, bar, 0.33" //
28-
}
29-
// use */
28+
}
29+
// use */
3030
) // drop
3131
public void shouldReturnRatioOfGivenWord(String sentence, String word, double expectedRatio) {
3232
WordCounter counter = new WordCounter(sentence);

0 commit comments

Comments
 (0)