createTestIdIncreasing static method
Returns a new unique ID useful intesting.
The id contains the specified suffix and a monotonically increasing integer.
Implementation
static String createTestIdIncreasing(String suffix) {
gNewId++;
return "${testId}_${suffix}_$gNewId";
}