2012-05-11 16:18:14 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class PHPParser_Tests_CommentTest extends PHPUnit_Framework_TestCase
|
|
|
|
{
|
|
|
|
public function testGetSetText() {
|
2012-06-06 15:33:38 +02:00
|
|
|
$comment = new PHPParser_Comment('/* Some comment */', 1);
|
2012-05-11 16:18:14 +02:00
|
|
|
|
|
|
|
$this->assertEquals('/* Some comment */', $comment->getText());
|
|
|
|
$this->assertEquals('/* Some comment */', (string) $comment);
|
|
|
|
|
|
|
|
$comment->setText('/* Some other comment */');
|
|
|
|
|
|
|
|
$this->assertEquals('/* Some other comment */', $comment->getText());
|
|
|
|
$this->assertEquals('/* Some other comment */', (string) $comment);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider provideTestReformatting
|
|
|
|
*/
|
|
|
|
public function testReformatting($commentText, $reformattedText) {
|
2012-06-06 15:33:38 +02:00
|
|
|
$comment = new PHPParser_Comment($commentText, 1);
|
2012-05-11 16:18:14 +02:00
|
|
|
$this->assertEquals($reformattedText, $comment->getReformattedText());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function provideTestReformatting() {
|
|
|
|
return array(
|
|
|
|
array('// Some text' . "\n", '// Some text'),
|
|
|
|
array('/* Some text */', '/* Some text */'),
|
|
|
|
array(
|
|
|
|
'/**
|
|
|
|
* Some text.
|
|
|
|
* Some more text.
|
|
|
|
*/',
|
|
|
|
'/**
|
|
|
|
* Some text.
|
|
|
|
* Some more text.
|
|
|
|
*/'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'/*
|
|
|
|
Some text.
|
|
|
|
Some more text.
|
|
|
|
*/',
|
|
|
|
'/*
|
|
|
|
Some text.
|
|
|
|
Some more text.
|
|
|
|
*/'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'/* Some text.
|
|
|
|
More text.
|
|
|
|
Even more text. */',
|
|
|
|
'/* Some text.
|
|
|
|
More text.
|
|
|
|
Even more text. */'
|
|
|
|
),
|
|
|
|
// invalid comment -> no reformatting
|
|
|
|
array(
|
|
|
|
'hallo
|
|
|
|
world',
|
|
|
|
'hallo
|
|
|
|
world',
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|