com.github.timm.cucumber.generate.name.OneUpCounter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-jvm-parallel-plugin Show documentation
Show all versions of cucumber-jvm-parallel-plugin Show documentation
Plugin for assisting with running Cucumber-JVM features in parallel
The newest version!
package com.github.timm.cucumber.generate.name;
public class OneUpCounter implements Counter {
private static int counter = 1;
public int next() {
return counter++;
}
}