[feature/mod_version_check] Add newer mod version check service

This commit is contained in:
Marc Alexander
2013-10-30 00:14:44 +01:00
parent d2634566b8
commit 6747625a5c
5 changed files with 289 additions and 0 deletions

25
tests/mock/user.php Normal file
View 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;
}
}
}