All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.camunda.zeebe.protocol.record.VersionDecoderAssert Maven / Gradle / Ivy

There is a newer version: 8.7.0-alpha1
Show newest version
package io.camunda.zeebe.protocol.record;

import org.assertj.core.api.AbstractObjectAssert;

/**
 * {@link VersionDecoder} specific assertions - Generated by CustomAssertionGenerator.
 */
@javax.annotation.Generated(value="assertj-assertions-generator")
public class VersionDecoderAssert extends AbstractObjectAssert {

  /**
   * Creates a new {@link VersionDecoderAssert} to make assertions on actual VersionDecoder.
   * @param actual the VersionDecoder we want to make assertions on.
   */
  public VersionDecoderAssert(VersionDecoder actual) {
    super(actual, VersionDecoderAssert.class);
  }

  /**
   * An entry point for VersionDecoderAssert to follow AssertJ standard assertThat() statements.
* With a static import, one can write directly: assertThat(myVersionDecoder) and get specific assertion with code completion. * @param actual the VersionDecoder we want to make assertions on. * @return a new {@link VersionDecoderAssert} */ @org.assertj.core.util.CheckReturnValue public static VersionDecoderAssert assertThat(VersionDecoder actual) { return new VersionDecoderAssert(actual); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy