Class FluentPrimitiveArrayAssertion<E,T,R>

Type Parameters:
E - The array element type.
T - The array type.
R - The return type.
Direct Known Subclasses:
FluentByteArrayAssertion, PrimitiveArrayAssertion

public class FluentPrimitiveArrayAssertion<E,T,R> extends FluentObjectAssertion<T,R>
  • Constructor Details

    • FluentPrimitiveArrayAssertion

      public FluentPrimitiveArrayAssertion(T value, R returns)
      Constructor.
      Parameters:
      value - The object being tested.
      Can be null.
      returns - The object to return after a test method is called.
      If null, the test method returns this object allowing multiple test method calls to be used on the same assertion.
    • FluentPrimitiveArrayAssertion

      public FluentPrimitiveArrayAssertion(Assertion creator, T value, R returns)
      Chained constructor.

      Used when transforming one assertion into another so that the assertion config can be used by the new assertion.

      Parameters:
      creator - The assertion that created this assertion.
      Should be null if this is the top-level assertion.
      value - The object being tested.
      Can be null.
      returns - The object to return after a test method is called.
      If null, the test method returns this object allowing multiple test method calls to be used on the same assertion.
  • Method Details