jiangqs
2023-07-13 cfd0118ef446a66f91999afc7b1e46ca607adf50
ruoyi-modules/ruoyi-system/src/test/java/com/ruoyi/system/systemTest.java
@@ -1,14 +1,9 @@
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
@@ -21,13 +16,7 @@
@SpringBootTest(classes = RuoYiSystemApplication.class)
public class systemTest {
    @Resource
    private PopService popService;
    @Test
    public void test1(){
        MgtPopGetVo mgtPopGetVo = popService.getMgtPop(1L);
        System.out.println(mgtPopGetVo);
    }
}