Skip to content

Commit 86754ba

Browse files
committed
feat: recommit for spotless
1 parent e466675 commit 86754ba

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lesson_15/tdd/tdd_app/src/test/java/EmployeeManagerTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import static org.assertj.core.api.Assertions.assertThatThrownBy;
22
import static org.junit.jupiter.api.Assertions.assertEquals;
3+
import org.junit.jupiter.api.BeforeEach;
4+
import org.junit.jupiter.api.Test;
35

46
import com.codedifferently.lesson15.Employee;
57
import com.codedifferently.lesson15.EmployeeManager;
6-
import org.junit.jupiter.api.BeforeEach;
7-
import org.junit.jupiter.api.Test;
88

99
public class EmployeeManagerTest {
1010

@@ -75,4 +75,5 @@ public void testRemoveEmployee() {
7575
.isInstanceOf(IllegalArgumentException.class)
7676
.hasMessage("Employee does not in collection with id " + id);
7777
}
78+
7879
}

0 commit comments

Comments
 (0)