23 lines
387 B
Java
23 lines
387 B
Java
|
|
package com.njcn.process;
|
||
|
|
|
||
|
|
import org.junit.Test;
|
||
|
|
import org.junit.runner.RunWith;
|
||
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
||
|
|
import org.springframework.test.context.junit4.SpringRunner;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* pqs
|
||
|
|
*
|
||
|
|
* @author cdf
|
||
|
|
* @date 2022/11/10
|
||
|
|
*/
|
||
|
|
@RunWith(SpringRunner.class)
|
||
|
|
@SpringBootTest
|
||
|
|
public class ProcessApplicationTest {
|
||
|
|
|
||
|
|
@Test
|
||
|
|
public void test1(){
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|