Skip to content

Commit 7df6016

Browse files
committed
added RectangleKata w/ @samanthalangit
1 parent 0280116 commit 7df6016

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

0 Bytes
Binary file not shown.

TeachingKidsProgramming/src/org/teachingkidsprogramming/section09final/SquareKata.java renamed to TeachingKidsProgramming/src/org/teachingkidsprogramming/section09final/RectangleKata.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package org.teachingkidsprogramming.section09final;
22

3-
public class SquareKata
3+
public class RectangleKata
44
{
55
public static void main(String[] args)
66
{
7-
// Draw a square
7+
// Draw a rectangle
88
// HINT: Write each step in English FIRST, then translate to Java one line at a time
99
// TIP: Be sure to run after each line of Java to make sure it works as expected
1010
}

TeachingKidsProgramming/src/org/teachingkidsprogramming/section09final/SquareKataTDD.java renamed to TeachingKidsProgramming/src/org/teachingkidsprogramming/section09final/RectangleKataTDD.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
import org.junit.Test;
77
import org.teachingkidsprogramming.recipes.completed.section09final.FizzBuzzTDD;
88

9-
public class SquareKataTDD
9+
public class RectangleKataTDD
1010
{
11-
// Draw a square
11+
// Draw a rectangle
1212
// HINT: Write each step in English FIRST, then translate to Java one line at a time
1313
// TIP: Be sure to run after each line of Java to make sure it works as expected
1414
// Write tests using the Assert object via the TDD style shown below

0 commit comments

Comments
 (0)