1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-11-23 04:42:06 +01:00

TestUtils: Set UTC timezone and add formatUTCDate()

This commit is contained in:
Paul Schaub 2021-06-24 15:08:35 +02:00
parent a6e5ca898f
commit 8a4908d29d

View file

@ -23,10 +23,14 @@ import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Iterator;
import java.util.Random;
import java.util.TimeZone;
public class TestUtils {
public static SimpleDateFormat UTC_PARSER = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss z");
static {
UTC_PARSER.setTimeZone(TimeZone.getTimeZone("UTC"));
}
public static final String ALPHABET = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
private static final Random RANDOM = new Random();
@ -38,6 +42,10 @@ public class TestUtils {
}
}
public static String formatUTCDate(Date date) {
return UTC_PARSER.format(date);
}
public static int getNumberOfItemsInIterator(Iterator<?> iterator) {
int num = 0;
while (iterator.hasNext()) {