Files
LinHelp/backend/src/test/java/com/linhelp/LinHelpApplicationTests.java
2026-07-07 15:06:33 +08:00

16 lines
380 B
Java

package com.linhelp;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest(properties = {
"spring.flyway.enabled=false",
"spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration"
})
class LinHelpApplicationTests {
@Test
void contextLoads() {
}
}