芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/mod/forum/tests/entities_author_test.php
. /** * The author entity tests. * * @package mod_forum * @copyright 2019 Ryan Wyllie
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); use mod_forum\local\entities\author as author_entity; /** * The author entity tests. * * @package mod_forum * @copyright 2019 Ryan Wyllie
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class mod_forum_entities_author_testcase extends advanced_testcase { /** * Test the entity returns expected values. */ public function test_entity() { $this->resetAfterTest(); $author = new author_entity( 1, 2, 'test', 'person', 'test person', 'test@example.com', 'middle', 'tteeeeest', 'ppppeeerssson', 'maverick', 'image alt' ); $this->assertEquals(1, $author->get_id()); $this->assertEquals(2, $author->get_picture_item_id()); $this->assertEquals('test', $author->get_first_name()); $this->assertEquals('person', $author->get_last_name()); $this->assertEquals('test person', $author->get_full_name()); $this->assertEquals('test@example.com', $author->get_email()); $this->assertEquals('middle', $author->get_middle_name()); $this->assertEquals('tteeeeest', $author->get_first_name_phonetic()); $this->assertEquals('ppppeeerssson', $author->get_last_name_phonetic()); $this->assertEquals('maverick', $author->get_alternate_name()); $this->assertEquals('image alt', $author->get_image_alt()); } }