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

org.mockito.internal.matchers.GreaterOrEqual Maven / Gradle / Ivy

There is a newer version: 5.11.0
Show newest version
/*
 * Copyright (c) 2007 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.internal.matchers;

import java.io.Serializable;

public class GreaterOrEqual> extends CompareTo implements Serializable {

    public GreaterOrEqual(T value) {
        super(value);
    }

    @Override
    protected String getName() {
        return "geq";
    }

    @Override
    protected boolean matchResult(int result) {
        return result >= 0;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy