File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
lesson_15/tdd/tdd_app/src/test/java/com/codedifferently/lesson15 Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1515 "[javascriptreact]" : {
1616 "editor.defaultFormatter" : " esbenp.prettier-vscode"
1717 },
18+ "java.debug.settings.onBuildFailureProceed" : true ,
1819}
Original file line number Diff line number Diff line change 22
33import static org .assertj .core .api .Assertions .assertThat ;
44import static org .junit .jupiter .api .Assertions .assertEquals ;
5-
65import org .junit .jupiter .api .Test ;
76
8- public class Lesson15TestEmployee {
7+ public class EmployeeTest {
98
109 @ Test
1110 public void getEmployeeId () {
Original file line number Diff line number Diff line change 33import static org .assertj .core .api .Assertions .assertThat ;
44import static org .assertj .core .api .Assertions .assertThatThrownBy ;
55import static org .junit .jupiter .api .Assertions .assertThrows ;
6-
76import org .junit .jupiter .api .BeforeEach ;
87import org .junit .jupiter .api .Test ; // got this from chatGpt
98
10- public class Lesson15TestManager {
9+ public class ManagerTest {
1110
1211 EmployeeManager manager ;
1312
You can’t perform that action at this time.
0 commit comments