14 lines
263 B
Java
14 lines
263 B
Java
package org.nl;
|
|
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
/**
|
|
* @Author: lyd
|
|
* @Description: 单元测试
|
|
* @Date: 2023/5/15
|
|
*/
|
|
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
|
|
public class ApplicationTest {
|
|
|
|
}
|