Files
spring-boot-data-geode/spring-geode-tests/smoke-tests/locator-application/spring-geode-smoke-tests-locator-application.gradle
John Blum 7df0a6487e Add Smoke Tests for a Spring Boot configured and bootstrapped Apache Geode Locator application.
Additionally, the Smoke Tests will test and assert the Spring-based Locator is able to connect to an Apache Geode based Locator.
2020-03-30 14:27:20 -07:00

19 lines
567 B
Groovy

apply plugin: 'io.spring.convention.spring-test'
description = "Smoke Tests asserting the proper function of a Spring Boot configured and bootstrapped Apache Geode Locator application."
dependencies {
implementation "org.assertj:assertj-core"
implementation project(':spring-geode-starter')
// implementation project(':spring-geode-starter-logging')
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation project(":spring-geode-starter-test")
}