You are here

function CoderCommentTest::setUp in Coder 6.2

File

tests/coder_comment.test, line 22

Class

CoderCommentTest

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;
}