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

io.cucumber.testng.NoUuidGenerator Maven / Gradle / Ivy

There is a newer version: 7.20.1
Show newest version
package io.cucumber.testng;

import io.cucumber.core.eventbus.UuidGenerator;

import java.util.UUID;

/**
 * This UUID generator does nothing. It is solely needed for marking purposes.
 */
final class NoUuidGenerator implements UuidGenerator {

    private NoUuidGenerator() {
        // No need for instantiation
    }

    @Override
    public UUID generateId() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy