|
@@ -1,15 +1,21 @@
|
|
|
package org.jeecg.modules.admin_aircraft_position.service.impl;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
import org.jeecg.JeecgSystemApplication;
|
|
|
import org.jeecg.boot.starter.rabbitmq.client.RabbitMqClient;
|
|
|
import org.jeecg.common.base.BaseMap;
|
|
|
import org.jeecg.modules.admin_aircraft_position.service.IAdminAircraftPositionService;
|
|
|
+import org.jeecg.modules.admin_order.entity.AdminOrder;
|
|
|
+import org.jeecg.modules.admin_security_check.entity.AdminSecurityCheck;
|
|
|
+import org.jeecg.modules.admin_security_check.service.IAdminSecurityCheckService;
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
import org.junit.runner.RunWith;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
import org.springframework.test.context.junit4.SpringRunner;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
|
|
|
|
/**
|
|
@@ -30,6 +36,10 @@ class AdminAircraftPositionServiceImplTest {
|
|
|
@Autowired
|
|
|
RabbitMqClient rabbitMqClient;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ IAdminSecurityCheckService adminSecurityCheckService;
|
|
|
+
|
|
|
+
|
|
|
@Test
|
|
|
void dept() {
|
|
|
adminAircraftPositionService.dept("1677475604918702082");
|
|
@@ -46,4 +56,10 @@ class AdminAircraftPositionServiceImplTest {
|
|
|
params.put("xml", xml);
|
|
|
rabbitMqClient.sendMessage("Test3HandlerEvent", params);
|
|
|
}
|
|
|
+
|
|
|
+ @Test
|
|
|
+ void testadminSecurityCheckService(){
|
|
|
+ List<AdminSecurityCheck> list = adminSecurityCheckService.list();
|
|
|
+ System.out.println(list);
|
|
|
+ }
|
|
|
}
|