Additionally, the Smoke Tests will test and assert the Spring-based Locator is able to connect to an Apache Geode based Locator.
19 lines
567 B
Groovy
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")
|
|
|
|
}
|