function CoderCommentTest::setUp in Coder 6.2
File
- tests/
coder_comment.test, line 22
Class
Code
function setUp() {
parent::setUp();
$this->id_line = '// $Id$' . "\n";
$this->file_line = "/**\n * @file\n * Foo\n */\n";
$this->comment_header = $this->id_line . $this->file_line;
}