Skip to content

Commit 0370228

Browse files
committed
fix: adds David implementation of Junit Tests for Employee class and EmployeeManager
1 parent 8594ed2 commit 0370228

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lesson_15/tdd/tdd_app/src/main/java/com/codedifferently/lesson15/Employee.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ public String getDetails() {
5757
+ salary;
5858
}
5959
}
60-
// dd
60+
// dd

lesson_15/tdd/tdd_app/src/test/java/com/codedifferently/lesson15/EmployeeManagerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public void test_getEmployeeCount() {
9090

9191
// Act
9292
int count = employeeManager.getEmployeeCount();
93-
ß
93+
9494
// Assert
9595
assertEquals(2, count);
9696
}

0 commit comments

Comments
 (0)