We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03b7511 commit 117ac20Copy full SHA for 117ac20
src/org/teachingkidsprogramming/section08tdd/DeepDive08TDD.java
@@ -48,6 +48,14 @@ public void stringsCanBePartOfStringBuilderAgain() throws Exception
48
String result = sb.toString();
49
Assert.assertEquals(___, result);
50
}
51
+ @Test
52
+ public void stringsCanBeReversedInStringBuilder() throws Exception
53
+ {
54
+ StringBuilder sb = new StringBuilder("very happy lady");
55
+ sb.reverse();
56
+ String result = sb.toString();
57
+ Assert.assertEquals(___, result);
58
+ }
59
/**
60
* Ignore the following, It's needed to run the homework
61
*
0 commit comments