Commit 585b8938 authored by Ivan Chepurnyi's avatar Ivan Chepurnyi

+ Added auto parameter to expectation, that reads automatically dataProvider name

parent 3852c97c
...@@ -354,10 +354,10 @@ abstract class EcomDev_PHPUnit_Test_Case extends PHPUnit_Framework_TestCase ...@@ -354,10 +354,10 @@ abstract class EcomDev_PHPUnit_Test_Case extends PHPUnit_Framework_TestCase
*/ */
protected function expected($firstArgument = null) protected function expected($firstArgument = null)
{ {
if (!is_array($firstArgument)) { if ($firstArgument === 'auto' && $this->readAttribute($this, 'dataName')) {
$arguments = func_get_args();
} elseif ($firstArgument === 'auto' && $this->readAttribute($this, 'dataName')) {
$arguments = $this->readAttribute($this, 'dataName'); $arguments = $this->readAttribute($this, 'dataName');
} elseif (!is_array($firstArgument)) {
$arguments = func_get_args();
} else { } else {
$arguments = $firstArgument; $arguments = $firstArgument;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment