Changed test names with more reasonable ones
These names helps understand purpose of the tests. Also --testdox-html option of phpunit generates more logical results that way.
This commit is contained in:
@ -24,7 +24,7 @@ class MicrodataParserTest extends \PHPUnit\Framework\TestCase
|
||||
/**
|
||||
* @dataProvider data
|
||||
*/
|
||||
public function testToObject($data)
|
||||
public function testItConvertsMicrodataToObjectFormat($data)
|
||||
{
|
||||
$parser = $this->getParser($data);
|
||||
|
||||
@ -36,7 +36,7 @@ class MicrodataParserTest extends \PHPUnit\Framework\TestCase
|
||||
/**
|
||||
* @dataProvider data
|
||||
*/
|
||||
public function testToArray($data)
|
||||
public function testItConvertsMicrodataToArrayFormat($data)
|
||||
{
|
||||
$parser = $this->getParser($data);
|
||||
|
||||
@ -48,7 +48,7 @@ class MicrodataParserTest extends \PHPUnit\Framework\TestCase
|
||||
/**
|
||||
* @dataProvider data
|
||||
*/
|
||||
public function testToJSON($data)
|
||||
public function testItConvertsMicrodataToJsonFormat($data)
|
||||
{
|
||||
$parser = $this->getParser($data);
|
||||
|
||||
|
Reference in New Issue
Block a user