Uses of Class
org.fest.assertions.ImageAssert

Uses of ImageAssert in org.fest.assertions
 

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



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