Improved module name <functional-area>-<Command|Query>....
Standalone services now use the Event Store Server (many tests still use the embedded server)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import org.gradle.api.*
|
||||
|
||||
|
||||
class VerifyEventStoreEnvironmentPlugin implements Plugin<Project> {
|
||||
void apply(Project project) {
|
||||
project.test {
|
||||
beforeSuite { x ->
|
||||
if (x.parent == null) {
|
||||
if (System.getenv("EVENT_STORE_URL") == null)
|
||||
logger.warn("\nPLEASE make sure that Event Store-related environment variables including EVENT_STORE_URL are set, see sample-set-remote-env.sh !!!!\n")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user