Example #1
0
 function testEquals()
 {
     $id1 = new LogootId("10000", "10000");
     $id2 = new LogootId("1000000", "1000000");
     $pos = new LogootPosition(array($id1));
     $this->assertFalse($pos->equals($id1, $id2));
     $id2 = new LogootId("10000", "10000");
     $this->assertTrue($pos->equals($id1, $id2));
 }