2 changed files with 23 additions and 4 deletions
@ -0,0 +1,18 @@ |
|||
package org.nl.test; |
|||
|
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.junit.jupiter.api.DisplayName; |
|||
import org.junit.jupiter.api.extension.ExtendWith; |
|||
import org.springframework.boot.test.context.SpringBootTest; |
|||
import org.springframework.test.context.junit.jupiter.SpringExtension; |
|||
|
|||
/** |
|||
* @Author: lyd |
|||
* @Date: 2025/6/23 |
|||
*/ |
|||
@Slf4j |
|||
@ExtendWith(SpringExtension.class) |
|||
@DisplayName("event test") |
|||
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) |
|||
public class EventTest { |
|||
} |
Loading…
Reference in new issue