wiki.techinc.nl/tests/phpunit/includes/CommentStore/CommentStoreCommentTest.php
Fomafix b0e8a79638 Use namespaced CommentStore and CommentStoreComment in tests
Change-Id: Ied41909c2a08f5ae98ea9a27d6d9fed80e1a0292
2023-12-04 12:45:14 +00:00

27 lines
638 B
PHP

<?php
use MediaWiki\CommentStore\CommentStoreComment;
use PHPUnit\Framework\TestCase;
/**
* @covers \MediaWiki\CommentStore\CommentStoreComment
*
* @license GPL-2.0-or-later
*/
class CommentStoreCommentTest extends TestCase {
public function testConstructorWithMessage() {
$message = new Message( 'test' );
$comment = new CommentStoreComment( null, 'test', $message );
$this->assertSame( $message, $comment->message );
}
public function testConstructorWithoutMessage() {
$text = '{{template|param}}';
$comment = new CommentStoreComment( null, $text );
$this->assertSame( $text, $comment->message->text() );
}
}