Uses of Class
org.fest.assertions.ShortAssert

Uses of ShortAssert in org.fest.assertions
 

Methods in org.fest.assertions that return ShortAssert
 ShortAssert ShortAssert.as(Description description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
 ShortAssert ShortAssert.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 ShortAssert Assertions.assertThat(short actual)
          Creates a new instance of ShortAssert.
static ShortAssert Assertions.assertThat(Short actual)
          Creates a new instance of ShortAssert.
 ShortAssert ShortAssert.describedAs(Description description)
          Alias for GenericAssert.as(Description), since "as" is a keyword in Groovy.
 ShortAssert ShortAssert.describedAs(String description)
          Alias for GenericAssert.as(String), since "as" is a keyword in Groovy.
 ShortAssert ShortAssert.doesNotSatisfy(Condition<Short> condition)
          Verifies that the actual Short does not satisfy the given condition.
 ShortAssert ShortAssert.is(Condition<Short> condition)
          Alias for satisfies(Condition).
 ShortAssert ShortAssert.isEqualTo(short expected)
          Verifies that the actual Short is equal to the given one.
 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.isNot(Condition<Short> condition)
          Alias for doesNotSatisfy(Condition).
 ShortAssert ShortAssert.isNotEqualTo(short other)
          Verifies that the actual Short is not equal to the given one.
 ShortAssert ShortAssert.isNotEqualTo(Short other)
          Verifies that the actual Short is not equal to the given one.
 ShortAssert ShortAssert.isNotNull()
          Verifies that the actual Short is not null.
 ShortAssert ShortAssert.isNotSameAs(Short other)
          Verifies that the actual Short is not the same object as the given one.
 ShortAssert ShortAssert.isPositive()
          Verifies that the actual Short is positive.
 ShortAssert ShortAssert.isSameAs(Short expected)
          Verifies that the actual Short is the same object as the given one.
 ShortAssert ShortAssert.isZero()
          Verifies that the actual Short is equal to zero.
 ShortAssert ShortAssert.overridingErrorMessage(String message)
          Replaces the default message displayed in case of a failure with the given one.
 ShortAssert ShortAssert.satisfies(Condition<Short> condition)
          Verifies that the actual Short satisfies the given condition.
 



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