more refactoring and dependency injection.
This commit is contained in:
@@ -12,7 +12,6 @@ class ArrTest extends PHPUnit_Framework_TestCase {
|
||||
$this->assertEquals(Arr::get($array, 'names.uncle'), $array['names']['uncle']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @dataProvider getArray
|
||||
*/
|
||||
@@ -23,7 +22,6 @@ class ArrTest extends PHPUnit_Framework_TestCase {
|
||||
$this->assertEquals(Arr::get($array, 'names.aunt', function() {return 'Tammy';}), 'Tammy');
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @dataProvider getArray
|
||||
*/
|
||||
@@ -39,7 +37,6 @@ class ArrTest extends PHPUnit_Framework_TestCase {
|
||||
|
||||
}
|
||||
|
||||
|
||||
public function getArray()
|
||||
{
|
||||
return array(array(
|
||||
|
||||
Reference in New Issue
Block a user