1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-27 13:40:28 +01:00

[ticket/13803] Added poll_option tests

PHPBB3-13803
This commit is contained in:
JoshyPHP
2015-05-09 18:14:03 +02:00
parent 8ef15d10e6
commit 2dc19cec9d
2 changed files with 104 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
include_once __DIR__ . '/test_row_based_plugin.php';
class phpbb_textreparser_poll_option_test extends phpbb_textreparser_test_row_based_plugin
{
public function getDataSet()
{
return $this->createXMLDataSet(__DIR__ . '/fixtures/poll_options.xml');
}
protected function get_reparser()
{
return new \phpbb\textreparser\plugins\poll_option($this->db);
}
}