Files
LinHelp/backend/src/test/java/com/linhelp/LinHelpApplicationTests.java

16 lines
380 B
Java
Raw Normal View History

2026-07-07 15:06:33 +08:00
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() {
}
}