Tests the DiffArray helper class.
Expanded class hierarchy of DiffArrayTest
class DiffArrayTest extends UnitTestCase {
/**
* Array to use for testing.
*
* @var array
*/
protected $array1;
/**
* Array to use for testing.
*
* @var array
*/
protected $array2;
public static function getInfo() {
return array(
'name' => 'DiffArray functionality',
'description' => 'Tests the DiffArray helper class.',
'group' => 'System',
);
}
function setUp() {
parent::setUp();
$this->array1 = array(
'same' => 'yes',
'different' => 'no',
'array_empty_diff' => array(),
'null' => NULL,
'int_diff' => 1,
'array_diff' => array(
'same' => 'same',
'array' => array(
'same' => 'same',
),
),
'array_compared_to_string' => array(
'value',
),
'string_compared_to_array' => 'value',
'new' => 'new',
);
$this->array2 = array(
'same' => 'yes',
'different' => 'yes',
'array_empty_diff' => array(),
'null' => NULL,
'int_diff' => '1',
'array_diff' => array(
'same' => 'different',
'array' => array(
'same' => 'same',
),
),
'array_compared_to_string' => 'value',
'string_compared_to_array' => array(
'value',
),
);
}
/**
* Tests DiffArray::diffAssocRecursive().
*/
public function testDiffAssocRecursive() {
$expected = array(
'different' => 'no',
'int_diff' => 1,
// The 'array' key should not be returned, as it's the same.
'array_diff' => array(
'same' => 'same',
),
'array_compared_to_string' => array(
'value',
),
'string_compared_to_array' => 'value',
'new' => 'new',
);
$this
->assertSame(DiffArray::diffAssocRecursive($this->array1, $this->array2), $expected);
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DiffArrayTest:: |
protected | property | Array to use for testing. | |
DiffArrayTest:: |
protected | property | Array to use for testing. | |
DiffArrayTest:: |
public static | function |
This method exists to support the simpletest UI runner. Overrides UnitTestCase:: |
|
DiffArrayTest:: |
function | |||
DiffArrayTest:: |
public | function | Tests DiffArray::diffAssocRecursive(). | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
public static | function | Generates a random string containing letters and numbers. |