2018-05-30 03:18:16 +00:00
|
|
|
package com.ruoyi;
|
|
|
|
|
|
|
|
|
|
import org.junit.Test;
|
|
|
|
|
import org.junit.runner.RunWith;
|
|
|
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
|
import org.springframework.test.context.junit4.SpringRunner;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 测试类
|
|
|
|
|
*/
|
|
|
|
|
@RunWith(SpringRunner.class)
|
|
|
|
|
@SpringBootTest
|
2018-05-31 03:46:53 +00:00
|
|
|
public class RuoYiApplicationTests
|
|
|
|
|
{
|
2018-05-30 03:18:16 +00:00
|
|
|
@Test
|
2018-05-31 03:46:53 +00:00
|
|
|
public void contextLoads()
|
|
|
|
|
{
|
2018-05-30 03:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|