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

com.trivago.logging.Language Maven / Gradle / Ivy

Go to download

Plugin for slicing Cucumber features into the smallest possible parts for parallel test execution.

There is a newer version: 1.12.0
Show newest version
package com.trivago.logging;

public class Language {
    public static String singularPlural(final int value, final String singular, final String plural) {
        if (value == 1) {
            return singular;
        }
        return plural;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy