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

com.github.timm.cucumber.generate.name.OneUpCounter Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version
package com.github.timm.cucumber.generate.name;

public class OneUpCounter implements Counter {

    private static int counter = 1;

    public int next() {
        return counter++;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy