[feature/mod_version_check] Add newer mod version check service
This commit is contained in:
46
tests/mock/template.php
Normal file
46
tests/mock/template.php
Normal file
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package testing
|
||||
* @copyright (c) Board3 Group ( www.board3.de )
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
*
|
||||
*/
|
||||
|
||||
namespace board3\portal\tests\mock;
|
||||
|
||||
class template
|
||||
{
|
||||
protected $data = array();
|
||||
|
||||
protected $test_case;
|
||||
|
||||
public function __construct($test_case)
|
||||
{
|
||||
$this->test_case = $test_case;
|
||||
}
|
||||
|
||||
public function assign_block_vars($row, $values)
|
||||
{
|
||||
$this->test_case->assertEquals(true, is_array($values));
|
||||
|
||||
if (!isset($this->data[$row]))
|
||||
{
|
||||
$this->data[$row] = array();
|
||||
}
|
||||
|
||||
foreach ($values as $key => $column)
|
||||
{
|
||||
$this->test_case->assertArrayNotHasKey($key, $this->data[$row]);
|
||||
$this->data[$row][$key] = $column;
|
||||
}
|
||||
}
|
||||
|
||||
public function assert_equals($data, $row)
|
||||
{
|
||||
foreach ($data as $key => $value)
|
||||
{
|
||||
$this->test_case->assertEquals($value, $this->data[$row][$key]);
|
||||
}
|
||||
}
|
||||
}
|
||||
25
tests/mock/user.php
Normal file
25
tests/mock/user.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package testing
|
||||
* @copyright (c) Board3 Group ( www.board3.de )
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
*
|
||||
*/
|
||||
|
||||
namespace board3\portal\tests\mock;
|
||||
|
||||
class user extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public $lang = array();
|
||||
|
||||
public function set($data)
|
||||
{
|
||||
$this->assertTrue(is_array($data));
|
||||
|
||||
foreach ($data as $key => $column)
|
||||
{
|
||||
$this->lang[$key] = $column;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user