blob: 33b407e92dbd869dca4592d1e47cdbff931b3f2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
function run_test() {
let uuid = CommonUtils.generateUUID();
Assert.equal(uuid.length, 36);
Assert.equal(uuid[8], "-");
run_next_test();
}
|