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

com.remondis.remap.AssertVerification Maven / Gradle / Ivy

There is a newer version: 4.3.7
Show newest version
package com.remondis.remap;

/**
 * Interface to implement custom verification tasks evaluated by {@link AssertConfiguration#ensure()}. Use this method
 * for verifications of mapping operations that cannot be performed using {@link Transformation#equals(Object)}.
 */
@FunctionalInterface
public interface AssertVerification {
  /**
   * @throws AssertionError Throws an {@link AssertionError} if the verification failed. Please use user-friendly text
   *         messages that explain the expected and actual state.
   */
  public void verify() throws AssertionError;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy