FunctionsTest.php 249 B

12345678910111213
  1. <?php
  2. namespace morphos\test\English;
  3. use PHPUnit\Framework\TestCase;
  4. class FunctionsTest extends TestCase
  5. {
  6. public function testPluralize()
  7. {
  8. $this->assertEquals('10 messages', \morphos\English\pluralize(10, 'message'));
  9. }
  10. }