16 lines
380 B
Java
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() {
|
||
|
|
}
|
||
|
|
}
|