1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/11579] Move simple tests into seperate files

PHPBB3-11579
This commit is contained in:
Marc Alexander
2013-06-03 16:15:08 +02:00
parent 3487b70cc0
commit c2bc82ebfd
7 changed files with 366 additions and 251 deletions

View File

@@ -0,0 +1,45 @@
<?php
/**
*
* @package testing
* @copyright (c) 2013 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
require_once dirname(__FILE__) . '/../../phpBB/includes/functions_user.php';
require_once dirname(__FILE__) . '/validate_data_helper.php';
class phpbb_functions_validate_match_test extends phpbb_test_case
{
protected $helper;
protected function setUp()
{
parent::setUp();
$this->helper = new phpbb_functions_validate_data_helper($this);
}
public function test_validate_match()
{
$this->helper->assert_validate_data(array(
'empty_opt' => array(),
'empty_empty_match' => array(),
'foobar' => array(),
'foobar_fail' => array('WRONG_DATA'),
),
array(
'empty_opt' => '',
'empty_empty_match' => '',
'foobar' => 'foobar',
'foobar_fail' => 'foobar123',
),
array(
'empty_opt' => array('match', true, '/[a-z]$/'),
'empty_empty_match' => array('match'),
'foobar' => array('match', false, '/[a-z]$/'),
'foobar_fail' => array('match', false, '/[a-z]$/'),
));
}
}