use of com.github.tomakehurst.wiremock.common.ConsoleNotifier in project wiremock by wiremock.
the class HandlebarsJsonPathHelperTest method init.
@BeforeEach
public void init() {
helper = new HandlebarsJsonPathHelper();
LocalNotifier.set(new ConsoleNotifier(true));
}
use of com.github.tomakehurst.wiremock.common.ConsoleNotifier in project wiremock by wiremock.
the class HostnameHelperTest method init.
@BeforeEach
public void init() throws UnknownHostException {
helper = new HostnameHelper();
hostname = InetAddress.getLocalHost().getHostName();
LocalNotifier.set(new ConsoleNotifier(true));
}
use of com.github.tomakehurst.wiremock.common.ConsoleNotifier in project wiremock by wiremock.
the class RegexExtractHelperTest method init.
@BeforeEach
public void init() {
helper = new RegexExtractHelper();
LocalNotifier.set(new ConsoleNotifier(true));
}
use of com.github.tomakehurst.wiremock.common.ConsoleNotifier in project wiremock by wiremock.
the class SystemValueHelperTest method init.
@BeforeEach
public void init() {
helper = new SystemValueHelper(new SystemKeyAuthoriser(ImmutableSet.of(".*")));
LocalNotifier.set(new ConsoleNotifier(true));
}
use of com.github.tomakehurst.wiremock.common.ConsoleNotifier in project wiremock by wiremock.
the class EqualToXmlPatternTest method init.
@BeforeEach
public void init() {
LocalNotifier.set(new ConsoleNotifier(true));
// We assert English XML parser error messages in this test. So we set our default locale to
// English to make
// this test succeed even for users with non-English default locales.
Locale.setDefault(Locale.ENGLISH);
}
Aggregations