Ejemplo n.º 1
0
 /**
  * @dataProvider provideComparePositions
  */
 function testHasReached(MySQLMasterPos $lowerPos, MySQLMasterPos $higherPos)
 {
     $this->assertTrue($higherPos->hasReached($lowerPos));
     $this->assertTrue($higherPos->hasReached($higherPos));
     $this->assertTrue($lowerPos->hasReached($lowerPos));
     $this->assertFalse($lowerPos->hasReached($higherPos));
 }
Ejemplo n.º 2
0
 function testMasterPos()
 {
     $pos1 = new MySQLMasterPos('db1034-bin.000976', '843431247');
     $pos2 = new MySQLMasterPos('db1034-bin.000976', '843431248');
     $this->assertTrue($pos1->hasReached($pos1));
     $this->assertTrue($pos2->hasReached($pos2));
     $this->assertTrue($pos2->hasReached($pos1));
     $this->assertFalse($pos1->hasReached($pos2));
 }