1
yangbin
2024-07-31 dd1a629d50b9c6377e7ca1e883e92748193ac82f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.jeecg.modules.mdcJc;
 
import org.jeecg.JeecgSystemApplication;
import org.junit.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;
 
/**
 * @author clown
 * * @date 2024/7/16
 */
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT,classes = JeecgSystemApplication.class)
public class MesTest {
}