Uses of Class
org.fest.assertions.ByteAssert

Uses of ByteAssert in org.fest.assertions
 

Methods in org.fest.assertions that return ByteAssert
 ByteAssert ByteAssert.as(Description description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
 ByteAssert ByteAssert.as(String description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
static ByteAssert Assertions.assertThat(byte actual)
          Creates a new instance of ByteAssert.
static ByteAssert Assertions.assertThat(Byte actual)
          Creates a new instance of ByteAssert.
 ByteAssert ByteAssert.describedAs(Description description)
          Alias for GenericAssert.as(Description), since "as" is a keyword in Groovy.
 ByteAssert ByteAssert.describedAs(String description)
          Alias for GenericAssert.as(String), since "as" is a keyword in Groovy.
 ByteAssert ByteAssert.doesNotSatisfy(Condition<Byte> condition)
          Verifies that the actual Byte does not satisfy the given condition.
 ByteAssert ByteAssert.is(Condition<Byte> condition)
          Alias for satisfies(Condition).
 ByteAssert ByteAssert.isEqualTo(byte expected)
          Verifies that the actual Byte value is equal to the given one.
 ByteAssert ByteAssert.isEqualTo(Byte expected)
          Verifies that the actual Byte value is equal to the given one.
 ByteAssert ByteAssert.isGreaterThan(byte other)
          Verifies that the actual Byte value is greater than the given one.
 ByteAssert ByteAssert.isGreaterThanOrEqualTo(byte other)
          Verifies that the actual Byte value is greater or equal to the given one.
 ByteAssert ByteAssert.isLessThan(byte other)
          Verifies that the actual Byte value is less than the given one.
 ByteAssert ByteAssert.isLessThanOrEqualTo(byte other)
          Verifies that the actual Byte value is less or equal to the given one.
 ByteAssert ByteAssert.isNegative()
          Verifies that the actual Byte value is negative.
 ByteAssert ByteAssert.isNot(Condition<Byte> condition)
          Alias for doesNotSatisfy(Condition).
 ByteAssert ByteAssert.isNotEqualTo(byte other)
          Verifies that the actual Byte value is not equal to the given one.
 ByteAssert ByteAssert.isNotEqualTo(Byte other)
          Verifies that the actual Byte is not equal to the given one.
 ByteAssert ByteAssert.isNotNull()
          Verifies that the actual Byte is not null.
 ByteAssert ByteAssert.isNotSameAs(Byte other)
          Verifies that the actual Byte is not the same object as the given one.
 ByteAssert ByteAssert.isPositive()
          Verifies that the actual Byte value is positive.
 ByteAssert ByteAssert.isSameAs(Byte expected)
          Verifies that the actual Byte is the same object as the given one.
 ByteAssert ByteAssert.isZero()
          Verifies that the actual Byte value is equal to zero.
 ByteAssert ByteAssert.overridingErrorMessage(String message)
          Replaces the default message displayed in case of a failure with the given one.
 ByteAssert ByteAssert.satisfies(Condition<Byte> condition)
          Verifies that the actual Byte satisfies the given condition.
 



Copyright © 2007-2011 FEST (Fixtures for Easy Software Testing). All Rights Reserved.