blob: 7739b714ba33e6a1ebf796211f5aceb8dec19ff3 [file] [log] [blame]
223010243394e0e2025-04-15 17:47:02 +08001package edu.bjtu.groupone.backend;
2
3import org.junit.jupiter.api.Test;
4import org.springframework.boot.test.context.SpringBootTest;
晓瑞2231b422362025-06-04 01:09:31 +08005import org.springframework.test.context.ActiveProfiles;
223010243394e0e2025-04-15 17:47:02 +08006
7@SpringBootTest
晓瑞2231b422362025-06-04 01:09:31 +08008@ActiveProfiles("test")
223010243394e0e2025-04-15 17:47:02 +08009class BackendApplicationTests {
10
11 @Test
12 void contextLoads() {
13 }
晓瑞2231b422362025-06-04 01:09:31 +080014}