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

io.camunda.zeebe.protocol.record.PartitionRoleAssert 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.AbstractComparableAssert;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy