io.camunda.zeebe.protocol.record.BrokerInfoDecoderAssert Maven / Gradle / Ivy
package io.camunda.zeebe.protocol.record;
import org.assertj.core.api.AbstractObjectAssert;
/**
* {@link BrokerInfoDecoder} specific assertions - Generated by CustomAssertionGenerator.
*/
@javax.annotation.Generated(value="assertj-assertions-generator")
public class BrokerInfoDecoderAssert extends AbstractObjectAssert {
/**
* Creates a new {@link BrokerInfoDecoderAssert}
to make assertions on actual BrokerInfoDecoder.
* @param actual the BrokerInfoDecoder we want to make assertions on.
*/
public BrokerInfoDecoderAssert(BrokerInfoDecoder actual) {
super(actual, BrokerInfoDecoderAssert.class);
}
/**
* An entry point for BrokerInfoDecoderAssert to follow AssertJ standard assertThat()
statements.
* With a static import, one can write directly: assertThat(myBrokerInfoDecoder)
and get specific assertion with code completion.
* @param actual the BrokerInfoDecoder we want to make assertions on.
* @return a new {@link BrokerInfoDecoderAssert}
*/
@org.assertj.core.util.CheckReturnValue
public static BrokerInfoDecoderAssert assertThat(BrokerInfoDecoder actual) {
return new BrokerInfoDecoderAssert(actual);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy