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

com.squareup.javapoet.ParameterSpecAssert Maven / Gradle / Ivy

The newest version!
package com.squareup.javapoet;

/**
 * {@link ParameterSpec} specific assertions - Generated by CustomAssertionGenerator.
 *
 * Although this class is not final to allow Soft assertions proxy, if you wish to extend it, 
 * extend {@link AbstractParameterSpecAssert} instead.
 */
@javax.annotation.Generated(value="assertj-assertions-generator")
public class ParameterSpecAssert extends AbstractParameterSpecAssert {

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy