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