Uses of Class
org.fest.assertions.api.ByteAssert
Packages that use ByteAssert
-
Uses of ByteAssert in org.fest.assertions.api
Methods in org.fest.assertions.api that return ByteAssertModifier and TypeMethodDescriptionstatic ByteAssert
Assertions.assertThat
(byte actual) Creates a new instance of
.ByteAssert
static ByteAssert
Assertions.assertThat
(Byte actual) Creates a new instance of
.ByteAssert
ByteAssert.isEqualTo
(byte expected) Verifies that the actual value is equal to the given one.ByteAssert.isGreaterThan
(byte other) Verifies that the actual value is greater than the given one.ByteAssert.isGreaterThanOrEqualTo
(byte other) Verifies that the actual value is greater than or equal to the given one.ByteAssert.isLessThan
(byte other) Verifies that the actual value is less than the given one.ByteAssert.isLessThanOrEqualTo
(byte other) Verifies that the actual value is less than or equal to the given one.ByteAssert.isNegative()
Verifies that the actual value is negative.ByteAssert.isNotEqualTo
(byte other) Verifies that the actual value is not equal to the given one.ByteAssert.isNotNegative()
Verifies that the actual value is non negative (positive or equal zero).ByteAssert.isNotPositive()
Verifies that the actual value is non positive (negative or equal zero).ByteAssert.isNotZero()
Verifies that the actual value is not equal to zero.ByteAssert.isPositive()
Verifies that the actual value is positive.ByteAssert.isZero()
Verifies that the actual value is equal to zero.ByteAssert.usingComparator
(Comparator<? super Byte> customComparator) ByteAssert.usingDefaultComparator()