Ejemplo n.º 1
0
 /**
  * @test
  * @group tagname
  */
 public function should_test_equality()
 {
     $one = new TagName('tag with space');
     $two = new TagName('tag with space');
     $three = new TagName('tag with spaces');
     //minor diff + -s
     $this->assertTrue($one->equals($two));
     $this->assertFalse($one->equals($three));
 }