org.catools.common.extensions.verify.CCollectionVerification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
The common objects which use in all other CATools projects
package org.catools.common.extensions.verify;
import org.catools.common.extensions.verify.interfaces.CCollectionVerifier;
import org.catools.common.logger.CLogger;
import java.util.Collection;
/**
* Collection verification class contains all verification method which is related to Collection
*
* @param represent any classes which extent {@link CVerificationBuilder}.
*/
public class CCollectionVerification extends CIterableVerification {
public CCollectionVerification(T verifier, CLogger logger) {
super(verifier, logger);
}
private CCollectionVerifier toVerifier(Collection actual) {
return () -> actual;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy