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 ReplaceStatementTest extends TestCase
{
/**
* @dataProvider replaceProvider
*
* @param mixed $test
*/
public function testReplace($test)
$this->runParserTest($test);
}
public function replaceProvider()
return array(
array('parser/parseReplace'),
array('parser/parseReplace2'),
array('parser/parseReplaceValues'),
array('parser/parseReplaceSet'),
array('parser/parseReplaceSelect'),
array('parser/parseReplaceErr'),
array('parser/parseReplaceErr2'),
array('parser/parseReplaceErr3'),
array('parser/parseReplaceIntoErr')
);