Skip to content

Commit 1b23c24

Browse files
committed
Updating DeepDive instructions
1 parent 701006a commit 1b23c24

9 files changed

Lines changed: 20 additions & 26 deletions

File tree

0 Bytes
Binary file not shown.

TeachingKidsProgramming/src/org/teachingkidsprogramming/section01forloops/DeepDive01ForLoops.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ public class DeepDive01ForLoops
1515
// Step 3: FILL IN the blank (___) to make that method pass
1616
// Step 4: SAY at least one thing you just learned
1717
// Step 5: GO to the next method
18-
//
19-
// NOTE: Do not change anything except the blank (___)
18+
// IMPORTANT - Do NOT change anything except the blank (___)
2019
//
2120
@Test
2221
public void numbersDoNotNeedQuotes()

TeachingKidsProgramming/src/org/teachingkidsprogramming/section02methods/DeepDive02Variables.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ public class DeepDive02Variables
1212
// Step 3: FILL IN the blank (___) to make that method pass
1313
// Step 4: SAY at least one thing you just learned
1414
// Step 5: GO to the next method
15-
//
16-
// NOTE: Do not change anything except the blank (___)
15+
// IMPORTANT - Do NOT change anything except the blank (___)//
1716
//
1817
@Test
1918
public void youCanReadVariables() throws Exception

TeachingKidsProgramming/src/org/teachingkidsprogramming/section03ifs/DeepDive03Ifs.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ public class DeepDive03Ifs
1212
// Step 3: FILL IN the blank (___) to make that method pass
1313
// Step 4: SAY at least one thing you just learned
1414
// Step 5: GO to the next method
15-
//
16-
// NOTE: Do not change anything except the blank (___)
15+
// IMPORTANT - Do NOT change anything except the blank (___)//
1716
//
1817
@Test
1918
public void doesABear() throws Exception

TeachingKidsProgramming/src/org/teachingkidsprogramming/section04mastery/DeepDive04Mastery.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ public class DeepDive04Mastery
1414
// Step 3: FILL IN the blank (___) to make that method pass
1515
// Step 4: SAY at least one thing you just learned
1616
// Step 5: GO to the next method
17-
//
18-
// NOTE: Do not change anything except the blank (___)
17+
// IMPORTANT - Do NOT change anything except the blank (___)//
1918
//
2019
@Test
2120
public void theseNumbersCount() throws Exception

TeachingKidsProgramming/src/org/teachingkidsprogramming/section05recursion/DeepDive05Recursion.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
package org.teachingkidsprogramming.section05recursion;
22

3+
import java.awt.Color;
4+
import java.awt.Cursor;
5+
import java.util.Arrays;
6+
import java.util.HashMap;
7+
import java.util.List;
8+
39
import org.junit.Assert;
410
import org.junit.Test;
511
import org.teachingextensions.logo.Tortoise;
612
import org.teachingextensions.logo.utils.ColorUtils.PenColors;
713

8-
import java.awt.*;
9-
import java.util.Arrays;
10-
import java.util.HashMap;
11-
import java.util.List;
12-
1314
public class DeepDive05Recursion
1415
{
1516
// Step 1: SELECT the method name (changeThePointerToAHand on line 27), then click the Run Button
@@ -18,8 +19,7 @@ public class DeepDive05Recursion
1819
// Step 3: FILL IN the blank (___) to make that method pass
1920
// Step 4: SAY at least one thing you just learned
2021
// Step 5: GO to the next method
21-
//
22-
// NOTE: Do not change anything except the blank (___)
22+
// IMPORTANT - Do NOT change anything except the blank (___)//
2323
//
2424
@Test
2525
public void changeThePointerToAHand() throws Exception

TeachingKidsProgramming/src/org/teachingkidsprogramming/section06modelviewcontroller/DeepDive06ModelViewController.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
package org.teachingkidsprogramming.section06modelviewcontroller;
22

3+
import java.awt.Color;
4+
import java.awt.Cursor;
5+
import java.util.HashMap;
6+
37
import org.junit.Assert;
48
import org.junit.Test;
59
import org.teachingextensions.logo.Tortoise;
610

7-
import java.awt.*;
8-
import java.util.HashMap;
9-
1011
@SuppressWarnings("unused")
1112
public class DeepDive06ModelViewController
1213
{
@@ -16,8 +17,7 @@ public class DeepDive06ModelViewController
1617
// Step 3: FILL IN the blank (___) to make that method pass
1718
// Step 4: SAY at least one thing you just learned
1819
// Step 5: GO to the next method
19-
//
20-
// NOTE: Do not change anything except the blank (___)
20+
// IMPORTANT - Do NOT change anything except the blank (___)//
2121
//
2222
@Test
2323
public void stringsCanBeArrays() throws Exception

TeachingKidsProgramming/src/org/teachingkidsprogramming/section07objects/DeepDive07Objects.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package org.teachingkidsprogramming.section07objects;
22

3+
import java.awt.Cursor;
4+
35
import org.junit.Assert;
46
import org.junit.Test;
57
import org.teachingextensions.logo.Tortoise;
@@ -8,8 +10,6 @@
810
import org.teachingextensions.logo.utils.PizzaUtils.Pizza;
911
import org.teachingextensions.logo.utils.PizzaUtils.Topping;
1012

11-
import java.awt.*;
12-
1313
@SuppressWarnings("unused")
1414
public class DeepDive07Objects
1515
{
@@ -19,8 +19,7 @@ public class DeepDive07Objects
1919
// Step 3: FILL IN the blank (___) to make that method pass
2020
// Step 4: SAY at least one thing you just learned
2121
// Step 5: GO to the next method
22-
//
23-
// NOTE: Do not change anything except the blank (___)
22+
// IMPORTANT - Do NOT change anything except the blank (___)//
2423
//
2524
@Test
2625
public void twoTortoises() throws Exception

TeachingKidsProgramming/src/org/teachingkidsprogramming/section09final/DeepDive09.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ public class DeepDive09
1414
// Step 3: FILL IN the blank (___) to make that method pass
1515
// Step 4: SAY at least one thing you just learned
1616
// Step 5: GO to the next method
17-
//
18-
// NOTE: Do not change anything except the blank (___)
17+
// IMPORTANT - Do NOT change anything except the blank (___)//
1918
//
2019
@Test
2120
public void exceptionsShouldProvideInformation() throws Exception

0 commit comments

Comments
 (0)