Class Tuple3Assert<A,B,C>
java.lang.Object
org.assertj.core.api.AbstractAssert<Tuple3Assert<A,B,C>, Tuple3<A,B,C>>
dmx.fun.assertj.Tuple3Assert<A,B,C>
- Type Parameters:
A- the first element typeB- the second element typeC- the third element type
- All Implemented Interfaces:
org.assertj.core.api.Assert<Tuple3Assert<A,B, C>, Tuple3<A, B, C>>, org.assertj.core.api.Descriptable<Tuple3Assert<A, B, C>>, org.assertj.core.api.ExtensionPoints<Tuple3Assert<A, B, C>, Tuple3<A, B, C>>
@NullMarked
public final class Tuple3Assert<A,B,C>
extends org.assertj.core.api.AbstractAssert<Tuple3Assert<A,B,C>, Tuple3<A,B,C>>
AssertJ assertions for
Tuple3.
Obtain instances via DmxFunAssertions.assertThat(Tuple3).
-
Field Summary
Fields inherited from class org.assertj.core.api.AbstractAssert
actual, info, myself, objects, throwUnsupportedExceptionOnEquals -
Method Summary
Modifier and TypeMethodDescriptionTuple3Assert<A, B, C> Verifies that the first element equals the given value.Tuple3Assert<A, B, C> Verifies that the second element equals the given value.Tuple3Assert<A, B, C> Verifies that the third element equals the given value.Methods inherited from class org.assertj.core.api.AbstractAssert
actual, areEqual, asInstanceOf, asList, assertionError, asString, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, doesNotHaveSameHashCodeAs, doesNotHaveToString, doesNotHaveToString, doesNotMatch, doesNotMatch, equals, extracting, extracting, failure, failureWithActualExpected, failWithActualExpectedAndMessage, failWithMessage, getWritableAssertionInfo, has, hashCode, hasSameClassAs, hasSameHashCodeAs, hasToString, hasToString, inBinary, inHexadecimal, is, isElementOfCustomAssert, isEqualTo, isExactlyInstanceOf, isIn, isIn, isInstanceOf, isInstanceOfAny, isInstanceOfSatisfying, isNot, isNotEqualTo, isNotExactlyInstanceOf, isNotIn, isNotIn, isNotInstanceOf, isNotInstanceOfAny, isNotNull, isNotOfAnyClassIn, isNotSameAs, isNull, isOfAnyClassIn, isSameAs, matches, matches, newListAssertInstance, overridingErrorMessage, overridingErrorMessage, satisfies, satisfies, satisfies, satisfiesAnyOf, satisfiesAnyOf, satisfiesAnyOfForProxy, satisfiesForProxy, setCustomRepresentation, setDescriptionConsumer, setPrintAssertionsDescription, throwAssertionError, usingComparator, usingComparator, usingDefaultComparator, usingEquals, usingEquals, usingRecursiveAssertion, usingRecursiveAssertion, usingRecursiveComparison, usingRecursiveComparison, withFailMessage, withFailMessage, withRepresentation, withThreadDumpOnErrorMethods inherited from class Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.assertj.core.api.Descriptable
as, as, as, describedAs, describedAs
-
Method Details
-
hasFirst
Verifies that the first element equals the given value.- Parameters:
expected- the expected first element- Returns:
- this assertion for chaining
-
hasSecond
Verifies that the second element equals the given value.- Parameters:
expected- the expected second element- Returns:
- this assertion for chaining
-
hasThird
Verifies that the third element equals the given value.- Parameters:
expected- the expected third element- Returns:
- this assertion for chaining
-