17 lines
477 B
Java
Raw Normal View History

package com.baeldung;
2023-06-12 01:51:42 +03:00
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")
2023-06-12 01:51:42 +03:00
class SpringContextTest {
@Test
2023-06-12 01:51:42 +03:00
void whenSpringContextIsBootstrapped_thenNoExceptions() {
}
}