Uses of Interface
org.junit.contrib.truth.subjects.Subject.And

Packages that use Subject.And
org.junit.contrib.truth.subjects   
 

Uses of Subject.And in org.junit.contrib.truth.subjects
 

Methods in org.junit.contrib.truth.subjects that return Subject.And
 Subject.And<S> IterableSubject.contains(Object item)
           
 Subject.And<S> CollectionSubject.contains(Object item)
          Attests that a Collection contains the provided object or fails.
 Subject.And<StringSubject> StringSubject.contains(String string)
           
 Subject.And<S> CollectionSubject.containsAllOf(Object... items)
          Attests that a Collection contains all of the provided objects or fails.
 Subject.And<S> CollectionSubject.containsAnyOf(Object... items)
          Attests that a Collection contains at least one of the provided objects or fails.
 Subject.And<S> ListSubject.containsSequence(List<?> sequence)
          Attests that a List contains the specified sequence.
 Subject.And<StringSubject> StringSubject.endsWith(String string)
           
 Subject.And<S> IterableSubject.hasContentsAnyOrder(Object... expected)
           
 Subject.And<S> IterableSubject.hasContentsInOrder(Object... expected)
           
 Subject.And<IntegerSubject> IntegerSubject.is(byte other)
           
 Subject.And<IntegerSubject> IntegerSubject.is(int other)
           
 Subject.And<IntegerSubject> IntegerSubject.is(short other)
           
 Subject.And<S> Subject.is(T other)
           
 Subject.And<S> Subject.isA(Class<?> clazz)
           
 Subject.And<IntegerSubject> IntegerSubject.isBetween(long lower, long upper)
          Attests that a Subject is exclusively within the lower and upper bounds provided or fails.
 Subject.And<S> IterableSubject.isEmpty()
          Attests that a Collection contains the provided object or fails.
 Subject.And<S> CollectionSubject.isEmpty()
           
 Subject.And<IntegerSubject> IntegerSubject.isEqualTo(Integer other)
           
 Subject.And<IntegerSubject> IntegerSubject.isEqualTo(Long other)
           
 Subject.And<S> Subject.isEqualTo(Object other)
           
 Subject.And<IntegerSubject> IntegerSubject.isInclusivelyInRange(long lower, long upper)
          Attests that a Subject is inclusively within the lower and upper bounds provided or fails.
 Subject.And<S> Subject.isNotA(Class<?> clazz)
           
 Subject.And<IntegerSubject> IntegerSubject.isNotEqualTo(Integer other)
           
 Subject.And<IntegerSubject> IntegerSubject.isNotEqualTo(Long other)
           
 Subject.And<S> Subject.isNotEqualTo(Object other)
           
 Subject.And<S> Subject.isNotNull()
           
 Subject.And<S> Subject.isNull()
           
 Subject.And<S> ListSubject.isOrdered()
          Attests that a List is strictly ordered according to the natural ordering of its elements.
 Subject.And<S> ListSubject.isOrdered(Comparator<T> comparator)
          Attests that a List is strictly ordered according to the given comparator.
 Subject.And<S> ListSubject.isPartiallyOrdered()
          Attests that a List is partially ordered according to the natural ordering of its elements.
 Subject.And<S> ListSubject.isPartiallyOrdered(Comparator<T> comparator)
          Attests that a List is partially ordered according to the given comparator.
protected  Subject.And<S> Subject.nextChain()
          A method which wraps the current Subject concrete subtype in a chaining "And" object.
 Subject.And<StringSubject> StringSubject.startsWith(String string)
           
 



Copyright © 2014. All Rights Reserved.