Ejemplo n.º 1
0
 /**
  * @todo Implement testEquals().
  */
 public function testEquals()
 {
     $newAcct = new RODSAccount("another_irods.notmyhost.mmm", "1112", "notme", "mememe", "notmyZone");
     $this->assertEquals(FALSE, $this->rodsAcct->Equals($newAcct));
     $newAcct = new RODSAccount($this->host, $this->port, $this->name, $this->passwd, $this->zone);
     $this->assertEquals(TRUE, $this->rodsAcct->Equals($newAcct));
 }