Exemplo n.º 1
0
 public function testDoesntPluralizeTwice()
 {
     $string = new String('person');
     $this->assertEquals('people', $string->plural());
     $this->assertEquals('people', $string->plural());
 }