Class AllOfFailingFast<T>
- java.lang.Object
-
- org.saynotobugs.confidence.quality.composite.QualityComposition<T>
-
- org.saynotobugs.confidence.quality.composite.AllOfFailingFast<T>
-
- All Implemented Interfaces:
Quality<T>
public final class AllOfFailingFast<T> extends QualityComposition<T>
-
-
Constructor Summary
Constructors Constructor Description AllOfFailingFast(java.lang.Iterable<? extends Quality<? super T>> delegates)AllOfFailingFast(Description delimiter, java.lang.Iterable<? extends Quality<? super T>> delegates)AllOfFailingFast(Description delimiter, Quality<? super T>... delegates)AllOfFailingFast(Quality<? super T>... delegates)
-
Method Summary
-
Methods inherited from class org.saynotobugs.confidence.quality.composite.QualityComposition
assessmentOf, description
-
-
-
-
Constructor Detail
-
AllOfFailingFast
@SafeVarargs public AllOfFailingFast(Description delimiter, Quality<? super T>... delegates)
-
AllOfFailingFast
public AllOfFailingFast(java.lang.Iterable<? extends Quality<? super T>> delegates)
-
AllOfFailingFast
public AllOfFailingFast(Description delimiter, java.lang.Iterable<? extends Quality<? super T>> delegates)
Matches if all the givenQualitys match or if noQualitywas given. In contrast toAllOfthis Matcher stops evaluating delegates when the firstQualitymismatches.The delegates' descriptions are delimited with the given
Description
-
-