下载完关闭流
parent
3f7ce59054
commit
d9043d9948
File diff suppressed because it is too large
Load Diff
@ -1,16 +1,26 @@
|
|||||||
package com.ann;
|
package com.ann;
|
||||||
|
|
||||||
|
import com.ann.entity.filing.MessageSubordinate;
|
||||||
|
import com.ann.service.MessageSubordinateService;
|
||||||
|
import com.ann.service.impl.QueueService;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
import org.springframework.test.context.junit4.SpringRunner;
|
import org.springframework.test.context.junit4.SpringRunner;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
@RunWith(SpringRunner.class)
|
@RunWith(SpringRunner.class)
|
||||||
@SpringBootTest
|
@SpringBootTest
|
||||||
public class DemoApplicationTests {
|
public class DemoApplicationTests {
|
||||||
|
@Autowired
|
||||||
|
MessageSubordinateService messageSubordinateService;
|
||||||
|
@Autowired
|
||||||
|
QueueService queueService;
|
||||||
@Test
|
@Test
|
||||||
public void contextLoads() {
|
public void contextLoads() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue