update modules/team: add 1 mod 7 files

This commit is contained in:
jack ning
2025-03-03 23:09:13 +08:00
parent 25c35ea2ed
commit a84e7f8f25
10 changed files with 66 additions and 18 deletions

View File

@@ -13,8 +13,8 @@
*/
package com.bytedesk.team;
import com.bytedesk.team.department.DepartmentController;
import com.bytedesk.team.department.DepartmentService;
import com.bytedesk.team.department.DepartmentRestController;
import com.bytedesk.team.department.DepartmentRestService;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
@@ -27,10 +27,10 @@ import org.mockito.MockitoAnnotations;
public class DepartmentControllerTests {
@InjectMocks
private DepartmentController departmentController;
private DepartmentRestController departmentController;
@Mock
private DepartmentService departmentService;
private DepartmentRestService departmentService;
@BeforeEach
public void setUp() {