| | |
| | | package com.ruoyi.system; |
| | | |
| | | |
| | | import com.ruoyi.system.domain.vo.MgtPopGetVo; |
| | | import com.ruoyi.system.service.config.PopService; |
| | | import org.junit.Test; |
| | | import org.junit.runner.RunWith; |
| | | import org.springframework.boot.test.context.SpringBootTest; |
| | | import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | /** |
| | | * @ClassName systemTest |
| | |
| | | @SpringBootTest(classes = RuoYiSystemApplication.class) |
| | | public class systemTest { |
| | | |
| | | @Resource |
| | | private PopService popService; |
| | | |
| | | @Test |
| | | public void test1(){ |
| | | MgtPopGetVo mgtPopGetVo = popService.getMgtPop(1L); |
| | | System.out.println(mgtPopGetVo); |
| | | } |
| | | |
| | | |
| | | } |