Uses of Class
org.fest.assertions.ShortArrayAssert

Uses of ShortArrayAssert in org.fest.assertions
 

Methods in org.fest.assertions that return ShortArrayAssert
 ShortArrayAssert ShortArrayAssert.as(Description description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
 ShortArrayAssert ShortArrayAssert.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 ShortArrayAssert Assertions.assertThat(short[] actual)
          Creates a new instance of ShortArrayAssert.
 ShortArrayAssert ShortArrayAssert.contains(short... values)
          Verifies that the actual short array contains the given values.
 ShortArrayAssert ShortArrayAssert.containsOnly(short... values)
          Verifies that the actual short array contains the given values only.
 ShortArrayAssert ShortArrayAssert.describedAs(Description description)
          Alias for GenericAssert.as(Description), since "as" is a keyword in Groovy.
 ShortArrayAssert ShortArrayAssert.describedAs(String description)
          Alias for GenericAssert.as(String), since "as" is a keyword in Groovy.
 ShortArrayAssert ShortArrayAssert.doesNotSatisfy(Condition<short[]> condition)
          Verifies that the actual short array does not satisfy the given condition.
 ShortArrayAssert ShortArrayAssert.excludes(short... values)
          Verifies that the actual short array does not contain the given values.
 ShortArrayAssert ShortArrayAssert.hasSize(int expected)
          Verifies that the number of elements in the actual short array is equal to the given one.
 ShortArrayAssert ShortArrayAssert.is(Condition<short[]> condition)
          Alias for satisfies(Condition).
 ShortArrayAssert ShortArrayAssert.isEqualTo(short[] expected)
          Verifies that the actual short array is equal to the given array.
 ShortArrayAssert ShortArrayAssert.isNot(Condition<short[]> condition)
          Alias for doesNotSatisfy(Condition).
 ShortArrayAssert ShortArrayAssert.isNotEmpty()
          Verifies that the actual short array contains at least on element.
 ShortArrayAssert ShortArrayAssert.isNotEqualTo(short[] array)
          Verifies that the actual short array is not equal to the given array.
 ShortArrayAssert ShortArrayAssert.isNotNull()
          Verifies that the actual short array is not null.
 ShortArrayAssert ShortArrayAssert.isNotSameAs(short[] expected)
          Verifies that the actual short array is not the same as the given array.
 ShortArrayAssert ShortArrayAssert.isSameAs(short[] expected)
          Verifies that the actual short array is the same as the given array.
 ShortArrayAssert ShortArrayAssert.overridingErrorMessage(String message)
          Replaces the default message displayed in case of a failure with the given one.
 ShortArrayAssert ShortArrayAssert.satisfies(Condition<short[]> condition)
          Verifies that the actual short array satisfies the given condition.
 



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