Modifier and Type | Method and Description |
---|---|
static ShortAssert |
Assertions.assertThat(short actual)
Creates a new instance of
. |
static ShortAssert |
Assertions.assertThat(Short actual)
Creates a new instance of
. |
ShortAssert |
ShortAssert.isEqualTo(short expected)
Verifies that the actual
Short is equal to the given one. |
ShortAssert |
ShortAssert.isGreaterThan(short other)
Verifies that the actual
Short is greater than the given one. |
ShortAssert |
ShortAssert.isGreaterThanOrEqualTo(short other)
Verifies that the actual
Short is greater or equal to the given one. |
ShortAssert |
ShortAssert.isLessThan(short other)
Verifies that the actual
Short is less than the given one. |
ShortAssert |
ShortAssert.isLessThanOrEqualTo(short other)
Verifies that the actual
Short is less or equal to the given one. |
ShortAssert |
ShortAssert.isNegative()
Verifies that the actual
Short is negative. |
ShortAssert |
ShortAssert.isNotEqualTo(short other)
Verifies that the actual
Short is not equal to the given one. |
ShortAssert |
ShortAssert.isPositive()
Verifies that the actual
Short is positive. |
ShortAssert |
ShortAssert.isZero()
Verifies that the actual
Short is equal to zero. |
Copyright © 2007-2013 FEST (Fixtures for Easy Software Testing). All Rights Reserved.