for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpMyAdmin\SqlParser\Tests\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class CallStatementTest extends TestCase
{
/**
* @dataProvider callProvider
*
* @param mixed $test
*/
public function testCall($test)
$this->runParserTest($test);
}
public function callProvider()
return array(
array('parser/parseCall'),
array('parser/parseCall2'),
array('parser/parseCall3')
);