17 lines
477 B
Java
17 lines
477 B
Java
package com.baeldung;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
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")
|
|
class SpringContextTest {
|
|
|
|
@Test
|
|
void whenSpringContextIsBootstrapped_thenNoExceptions() {
|
|
}
|
|
}
|