public class AssertionsOnColumnOfChangeEquality extends Object
AssertOnColumnOfChangeEquality
Modifier and Type | Method and Description |
---|---|
static <A extends AbstractAssert> |
hasValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Object valueAtStartPoint,
Object valueAtEndPoint,
Boolean expected)
Verifies that the values at the start point and the end point are equal to a boolean.
|
static <A extends AbstractAssert> |
hasValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Object valueAtStartPoint,
Object valueAtEndPoint,
Boolean expectedAtStartPoint,
Boolean expectedAtEndPoint)
Verifies that the values at the start point and the end point are equal to a boolean for start point and another boolean for end point.
|
static <A extends AbstractAssert> |
hasValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Object valueAtStartPoint,
Object valueAtEndPoint,
byte[] expected)
Verifies that the values at the start point and the end point are equal to bytes.
|
static <A extends AbstractAssert> |
hasValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Object valueAtStartPoint,
Object valueAtEndPoint,
byte[] expectedAtStartPoint,
byte[] expectedAtEndPoint)
Verifies that the values at the start point and the end point are equal to bytes for start point and other bytes for end point.
|
static <A extends AbstractAssert> |
hasValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Object valueAtStartPoint,
Object valueAtEndPoint,
DateTimeValue expected)
Verifies that the values at the start point and the end point are equal to a date/time.
|
static <A extends AbstractAssert> |
hasValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Object valueAtStartPoint,
Object valueAtEndPoint,
DateTimeValue expectedAtStartPoint,
DateTimeValue expectedAtEndPoint)
Verifies that the values at the start point and the end point are equal to a date/time for start point and another date/time for end point.
|
static <A extends AbstractAssert> |
hasValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Object valueAtStartPoint,
Object valueAtEndPoint,
DateValue expected)
Verifies that the values at the start point and the end point are equal to a date.
|
static <A extends AbstractAssert> |
hasValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Object valueAtStartPoint,
Object valueAtEndPoint,
DateValue expectedAtStartPoint,
DateValue expectedAtEndPoint)
Verifies that the values at the start point and the end point are equal to a date for start point and another date for end point.
|
static <A extends AbstractAssert> |
hasValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Object valueAtStartPoint,
Object valueAtEndPoint,
Number expected)
Verifies that the values at the start point and the end point are equal to a number.
|
static <A extends AbstractAssert> |
hasValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Object valueAtStartPoint,
Object valueAtEndPoint,
Number expectedAtStartPoint,
Number expectedAtEndPoint)
Verifies that the values at the start point and the end point are equal to a number for start point and another number for end point.
|
static <A extends AbstractAssert> |
hasValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Object valueAtStartPoint,
Object valueAtEndPoint,
String expected)
Verifies that the values at the start point and the end point are equal to a text.
|
static <A extends AbstractAssert> |
hasValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Object valueAtStartPoint,
Object valueAtEndPoint,
String expectedAtStartPoint,
String expectedAtEndPoint)
Verifies that the values at the start point and the end point are equal to a text for start point and another text for end point.
|
static <A extends AbstractAssert> |
hasValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Object valueAtStartPoint,
Object valueAtEndPoint,
TimeValue expected)
Verifies that the values at the start point and the end point are equal to a time.
|
static <A extends AbstractAssert> |
hasValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Object valueAtStartPoint,
Object valueAtEndPoint,
TimeValue expectedAtStartPoint,
TimeValue expectedAtEndPoint)
Verifies that the values at the start point and the end point are equal to a time for start point and another time for end point.
|
public static <A extends AbstractAssert> A hasValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, Object valueAtStartPoint, Object valueAtEndPoint, Boolean expected)
A
- The type of the assertion which call this method.assertion
- The assertion which call this method.info
- Writable information about an assertion.valueAtStartPoint
- The value at start point.valueAtEndPoint
- The value at end point.expected
- The boolean value.this
assertion object.AssertionError
- If the values at start point and at end point are not equal to the boolean.public static <A extends AbstractAssert> A hasValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, Object valueAtStartPoint, Object valueAtEndPoint, Boolean expectedAtStartPoint, Boolean expectedAtEndPoint)
A
- The type of the assertion which call this method.assertion
- The assertion which call this method.info
- Writable information about an assertion.valueAtStartPoint
- The value at start point.valueAtEndPoint
- The value at end point.expectedAtStartPoint
- The expected boolean at start point.expectedAtEndPoint
- The expected boolean at end point.this
assertion object.AssertionError
- If the values at start point and at end point are not equal to the corresponding booleans.public static <A extends AbstractAssert> A hasValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, Object valueAtStartPoint, Object valueAtEndPoint, Number expected)
A
- The type of the assertion which call this method.assertion
- The assertion which call this method.info
- Writable information about an assertion.valueAtStartPoint
- The value at start point.valueAtEndPoint
- The value at end point.expected
- The number value.this
assertion object.AssertionError
- If the values at start point and at end point are not equal to the number.public static <A extends AbstractAssert> A hasValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, Object valueAtStartPoint, Object valueAtEndPoint, Number expectedAtStartPoint, Number expectedAtEndPoint)
A
- The type of the assertion which call this method.assertion
- The assertion which call this method.info
- Writable information about an assertion.valueAtStartPoint
- The value at start point.valueAtEndPoint
- The value at end point.expectedAtStartPoint
- The expected number at start point.expectedAtEndPoint
- The expected number at end point.this
assertion object.AssertionError
- If the values at start point and at end point are not equal to the corresponding numbers.public static <A extends AbstractAssert> A hasValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, Object valueAtStartPoint, Object valueAtEndPoint, byte[] expected)
A
- The type of the assertion which call this method.assertion
- The assertion which call this method.info
- Writable information about an assertion.valueAtStartPoint
- The value at start point.valueAtEndPoint
- The value at end point.expected
- The bytes value.this
assertion object.AssertionError
- If the values at start point and at end point are not equal to the bytes.public static <A extends AbstractAssert> A hasValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, Object valueAtStartPoint, Object valueAtEndPoint, byte[] expectedAtStartPoint, byte[] expectedAtEndPoint)
A
- The type of the assertion which call this method.assertion
- The assertion which call this method.info
- Writable information about an assertion.valueAtStartPoint
- The value at start point.valueAtEndPoint
- The value at end point.expectedAtStartPoint
- The expected bytes at start point.expectedAtEndPoint
- The expected bytes at end point.this
assertion object.AssertionError
- If the values at start point and at end point are not equal to the corresponding bytes.public static <A extends AbstractAssert> A hasValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, Object valueAtStartPoint, Object valueAtEndPoint, String expected)
A
- The type of the assertion which call this method.assertion
- The assertion which call this method.info
- Writable information about an assertion.valueAtStartPoint
- The value at start point.valueAtEndPoint
- The value at end point.expected
- The text value.this
assertion object.AssertionError
- If the values at start point and at end point are not equal to the text.public static <A extends AbstractAssert> A hasValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, Object valueAtStartPoint, Object valueAtEndPoint, String expectedAtStartPoint, String expectedAtEndPoint)
A
- The type of the assertion which call this method.assertion
- The assertion which call this method.info
- Writable information about an assertion.valueAtStartPoint
- The value at start point.valueAtEndPoint
- The value at end point.expectedAtStartPoint
- The expected text at start point.expectedAtEndPoint
- The expected text at end point.this
assertion object.AssertionError
- If the values at start point and at end point are not equal to the corresponding texts.public static <A extends AbstractAssert> A hasValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, Object valueAtStartPoint, Object valueAtEndPoint, DateValue expected)
A
- The type of the assertion which call this method.assertion
- The assertion which call this method.info
- Writable information about an assertion.valueAtStartPoint
- The value at start point.valueAtEndPoint
- The value at end point.expected
- The date value.this
assertion object.AssertionError
- If the values at start point and at end point are not equal to the date.public static <A extends AbstractAssert> A hasValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, Object valueAtStartPoint, Object valueAtEndPoint, DateValue expectedAtStartPoint, DateValue expectedAtEndPoint)
A
- The type of the assertion which call this method.assertion
- The assertion which call this method.info
- Writable information about an assertion.valueAtStartPoint
- The value at start point.valueAtEndPoint
- The value at end point.expectedAtStartPoint
- The expected date at start point.expectedAtEndPoint
- The expected date at end point.this
assertion object.AssertionError
- If the values at start point and at end point are not equal to the corresponding dates.public static <A extends AbstractAssert> A hasValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, Object valueAtStartPoint, Object valueAtEndPoint, TimeValue expected)
A
- The type of the assertion which call this method.assertion
- The assertion which call this method.info
- Writable information about an assertion.valueAtStartPoint
- The value at start point.valueAtEndPoint
- The value at end point.expected
- The time value.this
assertion object.AssertionError
- If the values at start point and at end point are not equal to the time.public static <A extends AbstractAssert> A hasValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, Object valueAtStartPoint, Object valueAtEndPoint, TimeValue expectedAtStartPoint, TimeValue expectedAtEndPoint)
A
- The type of the assertion which call this method.assertion
- The assertion which call this method.info
- Writable information about an assertion.valueAtStartPoint
- The value at start point.valueAtEndPoint
- The value at end point.expectedAtStartPoint
- The expected time at start point.expectedAtEndPoint
- The expected time at end point.this
assertion object.AssertionError
- If the values at start point and at end point are not equal to the corresponding times.public static <A extends AbstractAssert> A hasValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, Object valueAtStartPoint, Object valueAtEndPoint, DateTimeValue expected)
A
- The type of the assertion which call this method.assertion
- The assertion which call this method.info
- Writable information about an assertion.valueAtStartPoint
- The value at start point.valueAtEndPoint
- The value at end point.expected
- The date/time value.this
assertion object.AssertionError
- If the values at start point and at end point are not equal to the date/time.public static <A extends AbstractAssert> A hasValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, Object valueAtStartPoint, Object valueAtEndPoint, DateTimeValue expectedAtStartPoint, DateTimeValue expectedAtEndPoint)
A
- The type of the assertion which call this method.assertion
- The assertion which call this method.info
- Writable information about an assertion.valueAtStartPoint
- The value at start point.valueAtEndPoint
- The value at end point.expectedAtStartPoint
- The expected date/time at start point.expectedAtEndPoint
- The expected date/time at end point.this
assertion object.AssertionError
- If the values at start point and at end point are not equal to the corresponding dates/times.Copyright © 2015 AssertJ. All Rights Reserved.