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