com.katalon.kata.helper.GeneratorHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of katalium Show documentation
Show all versions of katalium Show documentation
Fast, easy and reliable testing framework
package com.katalon.kata.helper;
import java.util.UUID;
public class GeneratorHelper {
public static String generateUniqueValue() {
return UUID.randomUUID().toString();
}
}