UUID uuid_array2[] = new UUID[SIZE_OF_TEST_ARRAY];
uuid_gen = Generators.nameBasedGenerator(NameBasedGenerator.NAMESPACE_URL);
// now create the array of uuids
for (int i = 0; i < uuid_array2.length; i++) {
uuid_array2[i] = uuid_gen.generate("test name" + i);
}
// check that none of the UUIDs are null
checkUUIDArrayForNonNullUUIDs(uuid_array);
checkUUIDArrayForNonNullUUIDs(uuid_array2);