1bfa9370f7
Props andizer. Fixes #46504. git-svn-id: https://develop.svn.wordpress.org/trunk@44903 602fd350-edb4-49c9-b593-d223f7449a82
46 lines
761 B
PHP
46 lines
761 B
PHP
<?php
|
|
|
|
class WP_UnitTest_Generator_Sequence {
|
|
static $incr = -1;
|
|
public $next;
|
|
public $template_string;
|
|
|
|
public function __construct( $template_string = '%s', $start = null ) {
|
|
if ( $start ) {
|
|
$this->next = $start;
|
|
} else {
|
|
self::$incr++;
|
|
$this->next = self::$incr;
|
|
}
|
|
$this->template_string = $template_string;
|
|
}
|
|
|
|
public function next() {
|
|
$generated = sprintf( $this->template_string, $this->next );
|
|
$this->next++;
|
|
return $generated;
|
|
}
|
|
|
|
/**
|
|
* Get the incrementor.
|
|
*
|
|
* @since 4.6.0
|
|
*
|
|
* @return int
|
|
*/
|
|
public function get_incr() {
|
|
return self::$incr;
|
|
}
|
|
|
|
/**
|
|
* Get the template string.
|
|
*
|
|
* @since 4.6.0
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_template_string() {
|
|
return $this->template_string;
|
|
}
|
|
}
|