
ru.tinkoff.gatling.amqp.javaapi.check.ExtendedCheckBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gatling-amqp-plugin_2.13 Show documentation
Show all versions of gatling-amqp-plugin_2.13 Show documentation
Plugin for support performance testing with AMQP in Gatling
The newest version!
package ru.tinkoff.gatling.amqp.javaapi.check;
import ru.tinkoff.gatling.amqp.checks.AmqpResponseCodeCheckBuilder.*;
import ru.tinkoff.gatling.amqp.request.AmqpProtocolMessage;
import static scala.jdk.javaapi.CollectionConverters.*;
import java.util.Arrays;
import java.util.List;
public class ExtendedCheckBuilder{
private final ExtendedDefaultFindCheckBuilder wrapped;
public ExtendedCheckBuilder(ExtendedDefaultFindCheckBuilder wrapped){
this.wrapped = wrapped;
}
public AmqpResponseCodeBuilder notIn(String... expected){
return notIn(Arrays.asList(expected));
}
public AmqpResponseCodeBuilder notIn(List expected){
return new AmqpResponseCodeBuilder(wrapped.notIn(asScala(expected).toSeq()));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy