Пример #1
0
 /**
  * Test constructor if variables are stored properly
  *
  * @return void
  */
 public function test__construct()
 {
     $this->assertEquals('/some/file/name.php', $this->_cbFile->name());
     $this->_cbFile = new CbFile('/some/file/name.php', $this->_issues);
     $this->assertEquals('/some/file/name.php', $this->_cbFile->name());
     $this->assertEquals($this->_issues, $this->_cbFile->getIssues());
 }