All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dreamhead.moco.verification.AtMostVerification Maven / Gradle / Ivy

package com.github.dreamhead.moco.verification;

public final class AtMostVerification extends UnaryTimesVerification {

    public AtMostVerification(final int count) {
        super(count);
    }

    @Override
    protected boolean doMeet(final int size, final int count) {
        return size <= count;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy