You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: TeachingKidsProgramming/src/org/teachingkidsprogramming/section06modelviewcontroller/DeepDive06ModelViewController.java
+54-9Lines changed: 54 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
3
3
importjava.awt.Color;
4
4
importjava.awt.Cursor;
5
+
importjava.util.HashMap;
5
6
6
7
importorg.junit.Assert;
7
8
importorg.junit.Test;
@@ -21,17 +22,20 @@ public class DeepDive06ModelViewController
21
22
// Step 5: Advance to the next method
22
23
// Do not change anything except the blank (___)
23
24
//
24
-
// concepts:
25
-
// string concatenation, including int-> string conversions
26
-
// MVC
27
25
@Test
28
26
publicvoidstringsCanBeArrays() throwsException
29
27
{
30
-
//create a new string from the strings "happy " + "baby"
0 commit comments