createTestIdIncreasing static method

String createTestIdIncreasing(
  1. String suffix
)

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";
}