Uses of Class
org.fest.assertions.Condition

Uses of Condition in org.fest.assertions
 

Methods in org.fest.assertions that return Condition
 Condition<T> Condition.as(String newDescription)
          Sets the description of this condition.
 

Methods in org.fest.assertions with parameters of type Condition
protected  void GenericAssert.assertDoesNotSatisfy(Condition<T> condition)
          Verifies that the actual value does not satisfy the given condition.
protected  void GenericAssert.assertIs(Condition<T> condition)
          Verifies that the actual value satisfies the given condition.
protected  void GenericAssert.assertIsNot(Condition<T> condition)
          Verifies that the actual value does not satisfy the given condition.
protected  void GenericAssert.assertSatisfies(Condition<T> condition)
          Verifies that the actual value satisfies the given condition.
 BigDecimalAssert BigDecimalAssert.doesNotSatisfy(Condition<BigDecimal> condition)
          Verifies that the actual BigDecimal does not satisfy the given condition.
 BooleanArrayAssert BooleanArrayAssert.doesNotSatisfy(Condition<boolean[]> condition)
          Verifies that the actual boolean array does not satisfy the given condition.
 ImageAssert ImageAssert.doesNotSatisfy(Condition<BufferedImage> condition)
          Verifies that the actual image does not satisfy the given condition.
 ByteArrayAssert ByteArrayAssert.doesNotSatisfy(Condition<byte[]> condition)
          Verifies that the actual byte array does not satisfy the given condition.
 CharArrayAssert CharArrayAssert.doesNotSatisfy(Condition<char[]> condition)
          Verifies that the actual char array does not satisfy the given condition.
 CollectionAssert CollectionAssert.doesNotSatisfy(Condition<Collection<?>> condition)
          Verifies that the actual collection does not satisfy the given condition.
 DoubleArrayAssert DoubleArrayAssert.doesNotSatisfy(Condition<double[]> condition)
          Verifies that the actual double array does not satisfy the given condition.
 FileAssert FileAssert.doesNotSatisfy(Condition<File> condition)
          Verifies that the actual File does not satisfy the given condition.
 FloatArrayAssert FloatArrayAssert.doesNotSatisfy(Condition<float[]> condition)
          Verifies that the actual float array does not satisfy the given condition.
 IntArrayAssert IntArrayAssert.doesNotSatisfy(Condition<int[]> condition)
          Verifies that the actual int array does not satisfy the given condition.
 ListAssert ListAssert.doesNotSatisfy(Condition<List<?>> condition)
          Verifies that the actual List does not satisfy the given condition.
 LongArrayAssert LongArrayAssert.doesNotSatisfy(Condition<long[]> condition)
          Verifies that the actual long array does not satisfy the given condition.
 MapAssert MapAssert.doesNotSatisfy(Condition<Map<?,?>> condition)
          Verifies that the actual Map does not satisfy the given condition.
 ObjectArrayAssert ObjectArrayAssert.doesNotSatisfy(Condition<Object[]> condition)
          Verifies that the actual Object array does not satisfy the given condition.
 ObjectAssert ObjectAssert.doesNotSatisfy(Condition<Object> condition)
          Verifies that the actual Object does not satisfy the given condition.
 ShortArrayAssert ShortArrayAssert.doesNotSatisfy(Condition<short[]> condition)
          Verifies that the actual short array does not satisfy the given condition.
 StringAssert StringAssert.doesNotSatisfy(Condition<String> condition)
          Verifies that the actual String does not satisfy the given condition.
protected abstract  GenericAssert<T> GenericAssert.doesNotSatisfy(Condition<T> condition)
          Verifies that the actual value does not satisfy the given condition.
 ThrowableAssert ThrowableAssert.doesNotSatisfy(Condition<Throwable> condition)
          Verifies that the actual Throwable does not satisfy the given condition.
 BigDecimalAssert BigDecimalAssert.is(Condition<BigDecimal> condition)
          Alias for BigDecimalAssert.satisfies(Condition).
 BooleanArrayAssert BooleanArrayAssert.is(Condition<boolean[]> condition)
          Alias for BooleanArrayAssert.satisfies(Condition).
 ImageAssert ImageAssert.is(Condition<BufferedImage> condition)
          Alias for ImageAssert.satisfies(Condition).
 ByteArrayAssert ByteArrayAssert.is(Condition<byte[]> condition)
          Alias for ByteArrayAssert.satisfies(Condition).
 CharArrayAssert CharArrayAssert.is(Condition<char[]> condition)
          Alias for CharArrayAssert.satisfies(Condition).
 CollectionAssert CollectionAssert.is(Condition<Collection<?>> condition)
          Alias for CollectionAssert.satisfies(Condition).
 DoubleArrayAssert DoubleArrayAssert.is(Condition<double[]> condition)
          Alias for DoubleArrayAssert.satisfies(Condition).
 FileAssert FileAssert.is(Condition<File> condition)
          Verifies that the actual File satisfies the given condition.
 FloatArrayAssert FloatArrayAssert.is(Condition<float[]> condition)
          Alias for FloatArrayAssert.satisfies(Condition).
 IntArrayAssert IntArrayAssert.is(Condition<int[]> condition)
          Alias for IntArrayAssert.satisfies(Condition).
 ListAssert ListAssert.is(Condition<List<?>> condition)
          Alias for ListAssert.satisfies(Condition).
 LongArrayAssert LongArrayAssert.is(Condition<long[]> condition)
          Alias for LongArrayAssert.satisfies(Condition).
 MapAssert MapAssert.is(Condition<Map<?,?>> condition)
          Alias for MapAssert.satisfies(Condition).
 ObjectArrayAssert ObjectArrayAssert.is(Condition<Object[]> condition)
          Alias for ObjectArrayAssert.satisfies(Condition).
 ObjectAssert ObjectAssert.is(Condition<Object> condition)
          Alias for ObjectAssert.satisfies(Condition).
 ShortArrayAssert ShortArrayAssert.is(Condition<short[]> condition)
          Alias for ShortArrayAssert.satisfies(Condition).
 StringAssert StringAssert.is(Condition<String> condition)
          Alias for StringAssert.satisfies(Condition).
protected abstract  GenericAssert<T> GenericAssert.is(Condition<T> condition)
          Alias for GenericAssert.satisfies(Condition).
 ThrowableAssert ThrowableAssert.is(Condition<Throwable> condition)
          Alias for ThrowableAssert.satisfies(Condition).
 BigDecimalAssert BigDecimalAssert.isNot(Condition<BigDecimal> condition)
          Alias for BigDecimalAssert.doesNotSatisfy(Condition).
 BooleanArrayAssert BooleanArrayAssert.isNot(Condition<boolean[]> condition)
          Alias for BooleanArrayAssert.doesNotSatisfy(Condition).
 ImageAssert ImageAssert.isNot(Condition<BufferedImage> condition)
          Alias for ImageAssert.doesNotSatisfy(Condition).
 ByteArrayAssert ByteArrayAssert.isNot(Condition<byte[]> condition)
          Alias for ByteArrayAssert.doesNotSatisfy(Condition).
 CharArrayAssert CharArrayAssert.isNot(Condition<char[]> condition)
          Alias for CharArrayAssert.doesNotSatisfy(Condition).
 CollectionAssert CollectionAssert.isNot(Condition<Collection<?>> condition)
          Alias for CollectionAssert.doesNotSatisfy(Condition).
 DoubleArrayAssert DoubleArrayAssert.isNot(Condition<double[]> condition)
          Alias for DoubleArrayAssert.doesNotSatisfy(Condition).
 FileAssert FileAssert.isNot(Condition<File> condition)
          Verifies that the actual File does not satisfy the given condition.
 FloatArrayAssert FloatArrayAssert.isNot(Condition<float[]> condition)
          Alias for FloatArrayAssert.doesNotSatisfy(Condition).
 IntArrayAssert IntArrayAssert.isNot(Condition<int[]> condition)
          Alias for IntArrayAssert.doesNotSatisfy(Condition).
 ListAssert ListAssert.isNot(Condition<List<?>> condition)
          Alias for ListAssert.doesNotSatisfy(Condition).
 LongArrayAssert LongArrayAssert.isNot(Condition<long[]> condition)
          Alias for LongArrayAssert.doesNotSatisfy(Condition).
 MapAssert MapAssert.isNot(Condition<Map<?,?>> condition)
          Alias for MapAssert.doesNotSatisfy(Condition).
 ObjectArrayAssert ObjectArrayAssert.isNot(Condition<Object[]> condition)
          Alias for ObjectArrayAssert.doesNotSatisfy(Condition).
 ObjectAssert ObjectAssert.isNot(Condition<Object> condition)
          Alias for ObjectAssert.doesNotSatisfy(Condition).
 ShortArrayAssert ShortArrayAssert.isNot(Condition<short[]> condition)
          Alias for ShortArrayAssert.doesNotSatisfy(Condition).
 StringAssert StringAssert.isNot(Condition<String> condition)
          Alias for StringAssert.doesNotSatisfy(Condition).
protected abstract  GenericAssert<T> GenericAssert.isNot(Condition<T> condition)
          Alias for GenericAssert.doesNotSatisfy(Condition).
 ThrowableAssert ThrowableAssert.isNot(Condition<Throwable> condition)
          Alias for ThrowableAssert.doesNotSatisfy(Condition).
 BigDecimalAssert BigDecimalAssert.satisfies(Condition<BigDecimal> condition)
          Verifies that the actual BigDecimal satisfies the given condition.
 BooleanArrayAssert BooleanArrayAssert.satisfies(Condition<boolean[]> condition)
          Verifies that the actual boolean array satisfies the given condition.
 ImageAssert ImageAssert.satisfies(Condition<BufferedImage> condition)
          Verifies that the actual image satisfies the given condition.
 ByteArrayAssert ByteArrayAssert.satisfies(Condition<byte[]> condition)
          Verifies that the actual byte array satisfies the given condition.
 CharArrayAssert CharArrayAssert.satisfies(Condition<char[]> condition)
          Verifies that the actual char array satisfies the given condition.
 CollectionAssert CollectionAssert.satisfies(Condition<Collection<?>> condition)
          Verifies that the actual collection satisfies the given condition.
 DoubleArrayAssert DoubleArrayAssert.satisfies(Condition<double[]> condition)
          Verifies that the actual double array satisfies the given condition.
 FileAssert FileAssert.satisfies(Condition<File> condition)
          Verifies that the actual File satisfies the given condition.
 FloatArrayAssert FloatArrayAssert.satisfies(Condition<float[]> condition)
          Verifies that the actual float array satisfies the given condition.
 IntArrayAssert IntArrayAssert.satisfies(Condition<int[]> condition)
          Verifies that the actual int array satisfies the given condition.
 ListAssert ListAssert.satisfies(Condition<List<?>> condition)
          Verifies that the actual List satisfies the given condition.
 LongArrayAssert LongArrayAssert.satisfies(Condition<long[]> condition)
          Verifies that the actual long array satisfies the given condition.
 MapAssert MapAssert.satisfies(Condition<Map<?,?>> condition)
          Verifies that the actual Map satisfies the given condition.
 ObjectArrayAssert ObjectArrayAssert.satisfies(Condition<Object[]> condition)
          Verifies that the actual Object array satisfies the given condition.
 ObjectAssert ObjectAssert.satisfies(Condition<Object> condition)
          Verifies that the actual Object satisfies the given condition.
 ShortArrayAssert ShortArrayAssert.satisfies(Condition<short[]> condition)
          Verifies that the actual short array satisfies the given condition.
 StringAssert StringAssert.satisfies(Condition<String> condition)
          Verifies that the actual String satisfies the given condition.
protected abstract  GenericAssert<T> GenericAssert.satisfies(Condition<T> condition)
          Verifies that the actual value satisfies the given condition.
 ThrowableAssert ThrowableAssert.satisfies(Condition<Throwable> condition)
          Verifies that the actual Throwable satisfies the given condition.
 



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