2020-02-12 20:08:11 +01:00
|
|
|
package com.baeldung;
|
2019-10-31 20:43:47 -05:00
|
|
|
|
2023-06-12 01:51:42 +03:00
|
|
|
import org.junit.jupiter.api.Test;
|
2019-10-31 20:43:47 -05:00
|
|
|
import org.springframework.test.context.ActiveProfiles;
|
|
|
|
import org.springframework.test.context.ContextConfiguration;
|
|
|
|
|
|
|
|
import com.baeldung.spring.data.neo4j.config.MovieDatabaseNeo4jTestConfiguration;
|
|
|
|
|
|
|
|
@ContextConfiguration(classes = MovieDatabaseNeo4jTestConfiguration.class)
|
|
|
|
@ActiveProfiles(profiles = "test")
|
2023-06-12 01:51:42 +03:00
|
|
|
class SpringContextTest {
|
2019-10-31 20:43:47 -05:00
|
|
|
|
|
|
|
@Test
|
2023-06-12 01:51:42 +03:00
|
|
|
void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
2019-10-31 20:43:47 -05:00
|
|
|
}
|
|
|
|
}
|