Beispiel #1
0
 /**
  * @dataProvider  pluralizeProvider()
  * @group         inflector
  */
 public function testPluralizeWithPrefix($count, $expected)
 {
     $prefix = 'You have';
     $this->assertSame("{$prefix} {$count} {$expected}", String::pluralize("{$prefix} {$count} new bunny!"));
 }