Esempio n. 1
0
 /**
  * @test
  * @dataProvider getTombstonesToCompare
  *
  * @param Tombstone $tombstone1
  * @param Tombstone $tombstone2
  */
 public function inscriptionEquals_differentInscription_returnFalse($tombstone1, $tombstone2)
 {
     $result = $tombstone1->inscriptionEquals($tombstone2);
     $this->assertFalse($result);
 }