
com.playtika.test.common.spring.NoDockerPresenceMarkerFailureAnalyser Maven / Gradle / Ivy
package com.playtika.test.common.spring;
import org.springframework.boot.diagnostics.AbstractFailureAnalyzer;
import org.springframework.boot.diagnostics.FailureAnalysis;
public class NoDockerPresenceMarkerFailureAnalyser extends AbstractFailureAnalyzer {
public static final String description = "No docker presence marker found in application context. Missing spring-cloud-starter?";
public static final String action = "Follow the guide: https://github.com/testcontainers/testcontainers-spring-boot#how-to-use";
@Override
protected FailureAnalysis analyze(Throwable rootFailure, NoDockerPresenceMarkerException cause) {
return new FailureAnalysis(description, action, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy