コード例 #1
0
ファイル: ProjectTest.php プロジェクト: hpbuniat/testy
 /**
  * Test getting a config-hash
  *
  * @depends testRun
  */
 public function testGetProjectHash()
 {
     $this->assertEquals(32, strlen($this->_object->getProjectHash()));
     $oProject = new \Testy\Project('test');
     $this->assertNotEquals($oProject->getProjectHash(), $this->_object->getProjectHash());
     unset($oProject);
 }