Files
EasySoft-ZenTaoPMS/lib/sqlparser/vendor/phpmyadmin/sql-parser/tests/Parser/CallStatementTest.php
T

28 lines
507 B
PHP

<?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')
);
}
}