function _uniqueId($prefix = '') { return Underscore::uniqueId($prefix); }
/** * @tags utilities */ public function testUniqueId() { $a = _::uniqueId(); $b = _::uniqueId(); $this->variable($a)->isNotEqualTo($b); }