We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e466675 commit 86754baCopy full SHA for 86754ba
lesson_15/tdd/tdd_app/src/test/java/EmployeeManagerTest.java
@@ -1,10 +1,10 @@
1
import static org.assertj.core.api.Assertions.assertThatThrownBy;
2
import static org.junit.jupiter.api.Assertions.assertEquals;
3
+import org.junit.jupiter.api.BeforeEach;
4
+import org.junit.jupiter.api.Test;
5
6
import com.codedifferently.lesson15.Employee;
7
import com.codedifferently.lesson15.EmployeeManager;
-import org.junit.jupiter.api.BeforeEach;
-import org.junit.jupiter.api.Test;
8
9
public class EmployeeManagerTest {
10
@@ -75,4 +75,5 @@ public void testRemoveEmployee() {
75
.isInstanceOf(IllegalArgumentException.class)
76
.hasMessage("Employee does not in collection with id " + id);
77
}
78
+
79
0 commit comments