You are here

public function InflectorTest::testInflectingSingulars in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/inflector/tests/Doctrine/Tests/Common/Inflector/InflectorTest.php \Doctrine\Tests\Common\Inflector\InflectorTest::testInflectingSingulars()

testInflectingSingulars method

@dataProvider dataSampleWords

Return value

void

File

vendor/doctrine/inflector/tests/Doctrine/Tests/Common/Inflector/InflectorTest.php, line 74

Class

InflectorTest

Namespace

Doctrine\Tests\Common\Inflector

Code

public function testInflectingSingulars($singular, $plural) {
  $this
    ->assertEquals($singular, Inflector::singularize($plural), "'{$plural}' should be singularized to '{$singular}'");
}