Exemplo n.º 1
0
 /**
  * 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);
 }