package com.emotionmuseum.websocket; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.ActiveProfiles; /** * WebSocket应用测试类 */ @SpringBootTest @ActiveProfiles("test") class WebSocketTestApplication { @Test void contextLoads() { // 测试Spring上下文是否能正常加载 } }