| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555 |
- <?php
- declare(strict_types=1);
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://book.cakephp.org/5/en/development/testing.html
- * @since 1.2.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Utility;
- use Cake\TestSuite\TestCase;
- use Cake\Utility\Inflector;
- use PHPUnit\Framework\Attributes\DataProvider;
- /**
- * Short description for class.
- */
- class InflectorTest extends TestCase
- {
- /**
- * A list of chars to test transliteration.
- *
- * @var array<string, array>
- */
- public static $maps = [
- 'de' => [ /* German */
- 'Ä' => 'Ae', 'Ö' => 'Oe', 'Ü' => 'Ue', 'ä' => 'ae', 'ö' => 'oe', 'ü' => 'ue', 'ß' => 'ss',
- 'ẞ' => 'SS',
- ],
- 'latin' => [
- 'À' => 'A', 'Á' => 'A', 'Â' => 'A', 'Ã' => 'A', 'Å' => 'A', 'Ă' => 'A', 'Æ' => 'AE', 'Ç' =>
- 'C', 'È' => 'E', 'É' => 'E', 'Ê' => 'E', 'Ë' => 'E', 'Ì' => 'I', 'Í' => 'I', 'Î' => 'I',
- 'Ï' => 'I', 'Ð' => 'D', 'Ñ' => 'N', 'Ò' => 'O', 'Ó' => 'O', 'Ô' => 'O', 'Õ' => 'O', 'Ő' => 'O', 'Ø' => 'O',
- 'Ș' => 'S', 'Ț' => 'T', 'Ù' => 'U', 'Ú' => 'U', 'Û' => 'U', 'Ű' => 'U',
- 'Ý' => 'Y', 'Þ' => 'TH', 'à' => 'a', 'á' => 'a', 'â' => 'a', 'ã' => 'a',
- 'å' => 'a', 'ă' => 'a', 'æ' => 'ae', 'ç' => 'c', 'è' => 'e', 'é' => 'e', 'ê' => 'e', 'ë' => 'e',
- 'ì' => 'i', 'í' => 'i', 'î' => 'i', 'ï' => 'i', 'ð' => 'd', 'ñ' => 'n', 'ò' => 'o', 'ó' =>
- 'o', 'ô' => 'o', 'õ' => 'o', 'ő' => 'o', 'ø' => 'o', 'ș' => 's', 'ț' => 't', 'ù' => 'u', 'ú' => 'u',
- 'û' => 'u', 'ű' => 'u', 'ý' => 'y', 'þ' => 'th', 'ÿ' => 'y',
- ],
- 'tr' => [ /* Turkish */
- 'ş' => 's', 'Ş' => 'S', 'ı' => 'i', 'İ' => 'I', 'ç' => 'c', 'Ç' => 'C', 'ğ' => 'g', 'Ğ' => 'G',
- ],
- 'uk' => [ /* Ukrainian */
- 'Є' => 'Ye', 'І' => 'I', 'Ї' => 'Yi', 'Ґ' => 'G', 'є' => 'ye', 'і' => 'i', 'ї' => 'yi', 'ґ' => 'g',
- ],
- 'cs' => [ /* Czech */
- 'č' => 'c', 'ď' => 'd', 'ě' => 'e', 'ň' => 'n', 'ř' => 'r', 'š' => 's', 'ť' => 't', 'ů' => 'u',
- 'ž' => 'z', 'Č' => 'C', 'Ď' => 'D', 'Ě' => 'E', 'Ň' => 'N', 'Ř' => 'R', 'Š' => 'S', 'Ť' => 'T',
- 'Ů' => 'U', 'Ž' => 'Z',
- ],
- 'pl' => [ /* Polish */
- 'ą' => 'a', 'ć' => 'c', 'ę' => 'e', 'ł' => 'l', 'ń' => 'n', 'ó' => 'o', 'ś' => 's', 'ź' => 'z',
- 'ż' => 'z', 'Ą' => 'A', 'Ć' => 'C', 'Ł' => 'L', 'Ń' => 'N', 'Ó' => 'O', 'Ś' => 'S',
- 'Ź' => 'Z', 'Ż' => 'Z',
- ],
- 'ro' => [ /* Romanian */
- 'ă' => 'a', 'â' => 'a', 'î' => 'i', 'ș' => 's', 'ț' => 't', 'Ţ' => 'T', 'ţ' => 't',
- ],
- 'lv' => [ /* Latvian */
- 'ā' => 'a', 'č' => 'c', 'ē' => 'e', 'ģ' => 'g', 'ī' => 'i', 'ķ' => 'k', 'ļ' => 'l', 'ņ' => 'n',
- 'š' => 's', 'ū' => 'u', 'ž' => 'z', 'Ā' => 'A', 'Č' => 'C', 'Ē' => 'E', 'Ģ' => 'G', 'Ī' => 'I',
- 'Ķ' => 'K', 'Ļ' => 'L', 'Ņ' => 'N', 'Š' => 'S', 'Ū' => 'U', 'Ž' => 'Z',
- ],
- 'lt' => [ /* Lithuanian */
- 'ą' => 'a', 'č' => 'c', 'ę' => 'e', 'ė' => 'e', 'į' => 'i', 'š' => 's', 'ų' => 'u', 'ū' => 'u', 'ž' => 'z',
- 'Ą' => 'A', 'Č' => 'C', 'Ę' => 'E', 'Ė' => 'E', 'Į' => 'I', 'Š' => 'S', 'Ų' => 'U', 'Ū' => 'U', 'Ž' => 'Z',
- ],
- ];
- /**
- * tearDown
- */
- public function tearDown(): void
- {
- parent::tearDown();
- Inflector::reset();
- }
- /**
- * testInflectingSingulars method
- */
- #[DataProvider('singularizeProvider')]
- public function testInflectingSingulars(string $singular, string $plural): void
- {
- $this->assertSame($singular, Inflector::singularize($plural));
- $singular = Inflector::camelize($singular);
- $plural = Inflector::camelize($plural);
- $this->assertSame($singular, Inflector::singularize($plural));
- }
- /**
- * Data provider for testing singularize()
- *
- * @return array
- */
- public static function singularizeProvider(): array
- {
- return [
- ['categoria', 'categorias'],
- ['menu', 'menus'],
- ['news', 'news'],
- ['food_menu', 'food_menus'],
- ['Menu', 'Menus'],
- ['FoodMenu', 'FoodMenus'],
- ['house', 'houses'],
- ['powerhouse', 'powerhouses'],
- ['quiz', 'quizzes'],
- ['Bus', 'Buses'],
- ['bus', 'buses'],
- ['matrix_row', 'matrix_rows'],
- ['matrix', 'matrices'],
- ['vertex', 'vertices'],
- ['index', 'indices'],
- ['index', 'indexes'],
- ['Alias', 'Aliases'],
- ['Alias', 'Alias'],
- ['Media', 'Media'],
- ['NodeMedia', 'NodeMedia'],
- ['alumnus', 'alumni'],
- ['bacillus', 'bacilli'],
- ['cactus', 'cacti'],
- ['focus', 'foci'],
- ['fungus', 'fungi'],
- ['nucleus', 'nuclei'],
- ['octopus', 'octopuses'],
- ['radius', 'radii'],
- ['stimulus', 'stimuli'],
- ['syllabus', 'syllabi'],
- ['terminus', 'termini'],
- ['virus', 'viruses'],
- ['person', 'people'],
- ['glove', 'gloves'],
- ['dove', 'doves'],
- ['life', 'lives'],
- ['knife', 'knives'],
- ['wolf', 'wolves'],
- ['slave', 'slaves'],
- ['shelf', 'shelves'],
- ['taxi', 'taxis'],
- ['tax', 'taxes'],
- ['Tax', 'Taxes'],
- ['AwesomeTax', 'AwesomeTaxes'],
- ['fax', 'faxes'],
- ['wax', 'waxes'],
- ['niche', 'niches'],
- ['cave', 'caves'],
- ['grave', 'graves'],
- ['wave', 'waves'],
- ['bureau', 'bureaus'],
- ['genetic_analysis', 'genetic_analyses'],
- ['doctor_diagnosis', 'doctor_diagnoses'],
- ['paranthesis', 'parantheses'],
- ['Cause', 'Causes'],
- ['colossus', 'colossuses'],
- ['diagnosis', 'diagnoses'],
- ['basis', 'bases'],
- ['analysis', 'analyses'],
- ['curve', 'curves'],
- ['cafe', 'cafes'],
- ['roof', 'roofs'],
- ['foe', 'foes'],
- ['database', 'databases'],
- ['cookie', 'cookies'],
- ['thief', 'thieves'],
- ['potato', 'potatoes'],
- ['hero', 'heroes'],
- ['buffalo', 'buffaloes'],
- ['baby', 'babies'],
- ['tooth', 'teeth'],
- ['goose', 'geese'],
- ['foot', 'feet'],
- ['objective', 'objectives'],
- ['archive', 'archives'],
- ['brief', 'briefs'],
- ['quota', 'quotas'],
- ['curve', 'curves'],
- ['body_curve', 'body_curves'],
- ['metadata', 'metadata'],
- ['files_metadata', 'files_metadata'],
- ['address', 'addresses'],
- ['sieve', 'sieves'],
- ['blue_octopus', 'blue_octopuses'],
- ['chef', 'chefs'],
- ['', ''],
- ['cache', 'caches'],
- ['lens', 'lenses'],
- ['species', 'species'],
- ['animal_species', 'animal_species'],
- ];
- }
- /**
- * Test that overlapping irregulars don't collide.
- */
- public function testSingularizeMultiWordIrregular(): void
- {
- Inflector::rules('irregular', [
- 'pregunta_frecuente' => 'preguntas_frecuentes',
- 'categoria_pregunta_frecuente' => 'categorias_preguntas_frecuentes',
- ]);
- $this->assertSame('pregunta_frecuente', Inflector::singularize('preguntas_frecuentes'));
- $this->assertSame(
- 'categoria_pregunta_frecuente',
- Inflector::singularize('categorias_preguntas_frecuentes')
- );
- $this->assertSame(
- 'faq_categoria_pregunta_frecuente',
- Inflector::singularize('faq_categorias_preguntas_frecuentes')
- );
- }
- /**
- * testInflectingPlurals method
- */
- #[DataProvider('pluralizeProvider')]
- public function testInflectingPlurals(string $plural, string $singular): void
- {
- $this->assertSame($plural, Inflector::pluralize($singular));
- $plural = Inflector::camelize($plural);
- $singular = Inflector::camelize($singular);
- $this->assertSame($plural, Inflector::pluralize($singular));
- }
- /**
- * Data provider for testing pluralize()
- *
- * @return array
- */
- public static function pluralizeProvider(): array
- {
- return [
- ['axmen', 'axman'],
- ['men', 'man'],
- ['women', 'woman'],
- ['humans', 'human'],
- ['axmen', 'axman'],
- ['men', 'man'],
- ['women', 'woman'],
- ['humans', 'human'],
- ['categorias', 'categoria'],
- ['houses', 'house'],
- ['powerhouses', 'powerhouse'],
- ['Buses', 'Bus'],
- ['buses', 'bus'],
- ['menus', 'menu'],
- ['news', 'news'],
- ['food_menus', 'food_menu'],
- ['Menus', 'Menu'],
- ['FoodMenus', 'FoodMenu'],
- ['quizzes', 'quiz'],
- ['matrix_rows', 'matrix_row'],
- ['matrices', 'matrix'],
- ['vertices', 'vertex'],
- ['indexes', 'index'],
- ['Aliases', 'Alias'],
- ['Aliases', 'Aliases'],
- ['Media', 'Media'],
- ['NodeMedia', 'NodeMedia'],
- ['alumni', 'alumnus'],
- ['bacilli', 'bacillus'],
- ['cacti', 'cactus'],
- ['foci', 'focus'],
- ['fungi', 'fungus'],
- ['nuclei', 'nucleus'],
- ['octopuses', 'octopus'],
- ['radii', 'radius'],
- ['stimuli', 'stimulus'],
- ['syllabi', 'syllabus'],
- ['termini', 'terminus'],
- ['viruses', 'virus'],
- ['people', 'person'],
- ['people', 'people'],
- ['gloves', 'glove'],
- ['crises', 'crisis'],
- ['taxes', 'tax'],
- ['waves', 'wave'],
- ['bureaus', 'bureau'],
- ['cafes', 'cafe'],
- ['roofs', 'roof'],
- ['foes', 'foe'],
- ['cookies', 'cookie'],
- ['wolves', 'wolf'],
- ['thieves', 'thief'],
- ['potatoes', 'potato'],
- ['heroes', 'hero'],
- ['buffaloes', 'buffalo'],
- ['teeth', 'tooth'],
- ['geese', 'goose'],
- ['feet', 'foot'],
- ['objectives', 'objective'],
- ['briefs', 'brief'],
- ['quotas', 'quota'],
- ['curves', 'curve'],
- ['body_curves', 'body_curve'],
- ['metadata', 'metadata'],
- ['files_metadata', 'files_metadata'],
- ['stadia', 'stadia'],
- ['Addresses', 'Address'],
- ['sieves', 'sieve'],
- ['blue_octopuses', 'blue_octopus'],
- ['chefs', 'chef'],
- ['', ''],
- ['pokemon', 'pokemon'],
- ];
- }
- /**
- * Test that overlapping irregulars don't collide.
- */
- public function testPluralizeMultiWordIrregular(): void
- {
- Inflector::rules('irregular', [
- 'pregunta_frecuente' => 'preguntas_frecuentes',
- 'categoria_pregunta_frecuente' => 'categorias_preguntas_frecuentes',
- ]);
- $this->assertSame('preguntas_frecuentes', Inflector::pluralize('pregunta_frecuente'));
- $this->assertSame(
- 'categorias_preguntas_frecuentes',
- Inflector::pluralize('categoria_pregunta_frecuente')
- );
- $this->assertSame(
- 'faq_categorias_preguntas_frecuentes',
- Inflector::pluralize('faq_categoria_pregunta_frecuente')
- );
- }
- /**
- * testInflectingMultiWordIrregulars
- */
- public function testInflectingMultiWordIrregulars(): void
- {
- // unset the default rules in order to avoid them possibly matching
- // the words in case the irregular regex won't match, the tests
- // should fail in that case
- Inflector::rules('plural', [
- 'rules' => [],
- ]);
- Inflector::rules('singular', [
- 'rules' => [],
- ]);
- $this->assertSame('wisdom tooth', Inflector::singularize('wisdom teeth'));
- $this->assertSame('wisdom-tooth', Inflector::singularize('wisdom-teeth'));
- $this->assertSame('wisdom_tooth', Inflector::singularize('wisdom_teeth'));
- $this->assertSame('sweet potatoes', Inflector::pluralize('sweet potato'));
- $this->assertSame('sweet-potatoes', Inflector::pluralize('sweet-potato'));
- $this->assertSame('sweet_potatoes', Inflector::pluralize('sweet_potato'));
- }
- /**
- * testUnderscore method
- */
- public function testUnderscore(): void
- {
- $this->assertSame('test_thing', Inflector::underscore('TestThing'));
- $this->assertSame('test_thing', Inflector::underscore('testThing'));
- $this->assertSame('test_thing_extra', Inflector::underscore('TestThingExtra'));
- $this->assertSame('test_thing_extra', Inflector::underscore('testThingExtra'));
- $this->assertSame('test_this_thing', Inflector::underscore('test-this-thing'));
- $this->assertSame('test_thing_extrå', Inflector::underscore('testThingExtrå'));
- // Identical checks test the cache code path.
- $this->assertSame('test_thing', Inflector::underscore('TestThing'));
- $this->assertSame('test_thing', Inflector::underscore('testThing'));
- $this->assertSame('test_thing_extra', Inflector::underscore('TestThingExtra'));
- $this->assertSame('test_thing_extra', Inflector::underscore('testThingExtra'));
- $this->assertSame('test_thing_extrå', Inflector::underscore('testThingExtrå'));
- // Test other values
- $this->assertSame('0', Inflector::underscore('0'));
- }
- /**
- * testDasherized method
- */
- public function testDasherized(): void
- {
- $this->assertSame('test-thing', Inflector::dasherize('TestThing'));
- $this->assertSame('test-thing', Inflector::dasherize('testThing'));
- $this->assertSame('test-thing-extra', Inflector::dasherize('TestThingExtra'));
- $this->assertSame('test-thing-extra', Inflector::dasherize('testThingExtra'));
- $this->assertSame('test-this-thing', Inflector::dasherize('test_this_thing'));
- // Test stupid values
- $this->assertSame('', Inflector::dasherize(''));
- $this->assertSame('0', Inflector::dasherize('0'));
- }
- /**
- * Demonstrate the expected output for bad inputs
- */
- public function testCamelize(): void
- {
- $this->assertSame('TestThing', Inflector::camelize('test_thing'));
- $this->assertSame('Test-thing', Inflector::camelize('test-thing'));
- $this->assertSame('TestThing', Inflector::camelize('test thing'));
- $this->assertSame('Test_thing', Inflector::camelize('test_thing', '-'));
- $this->assertSame('TestThing', Inflector::camelize('test-thing', '-'));
- $this->assertSame('TestThing', Inflector::camelize('test thing', '-'));
- $this->assertSame('Test_thing', Inflector::camelize('test_thing', ' '));
- $this->assertSame('Test-thing', Inflector::camelize('test-thing', ' '));
- $this->assertSame('TestThing', Inflector::camelize('test thing', ' '));
- $this->assertSame('TestPlugin.TestPluginComments', Inflector::camelize('TestPlugin.TestPluginComments'));
- }
- /**
- * testVariableNaming method
- */
- public function testVariableNaming(): void
- {
- $this->assertSame('testField', Inflector::variable('test_field'));
- $this->assertSame('testFieLd', Inflector::variable('test_fieLd'));
- $this->assertSame('testField', Inflector::variable('test field'));
- $this->assertSame('testField', Inflector::variable('Test_field'));
- }
- /**
- * testClassNaming method
- */
- public function testClassNaming(): void
- {
- $this->assertSame('ArtistsGenre', Inflector::classify('artists_genres'));
- $this->assertSame('FileSystem', Inflector::classify('file_systems'));
- $this->assertSame('News', Inflector::classify('news'));
- $this->assertSame('Bureau', Inflector::classify('bureaus'));
- }
- /**
- * testTableNaming method
- */
- public function testTableNaming(): void
- {
- $this->assertSame('artists_genres', Inflector::tableize('ArtistsGenre'));
- $this->assertSame('file_systems', Inflector::tableize('FileSystem'));
- $this->assertSame('news', Inflector::tableize('News'));
- $this->assertSame('bureaus', Inflector::tableize('Bureau'));
- }
- /**
- * testHumanization method
- */
- public function testHumanization(): void
- {
- $this->assertSame('Posts', Inflector::humanize('posts'));
- $this->assertSame('Posts Tags', Inflector::humanize('posts_tags'));
- $this->assertSame('File Systems', Inflector::humanize('file_systems'));
- $this->assertSame('Hello Wörld', Inflector::humanize('hello_wörld'));
- $this->assertSame('福岡 City', Inflector::humanize('福岡_city'));
- }
- /**
- * testCustomPluralRule method
- */
- public function testCustomPluralRule(): void
- {
- Inflector::rules('plural', ['/^(custom)$/i' => '\1izables']);
- Inflector::rules('uninflected', ['uninflectable']);
- $this->assertSame('customizables', Inflector::pluralize('custom'));
- $this->assertSame('uninflectable', Inflector::pluralize('uninflectable'));
- Inflector::rules('plural', ['/^(alert)$/i' => '\1ables']);
- Inflector::rules('irregular', ['amaze' => 'amazable', 'phone' => 'phonezes']);
- Inflector::rules('uninflected', ['noflect', 'abtuse']);
- $this->assertSame('noflect', Inflector::pluralize('noflect'));
- $this->assertSame('abtuse', Inflector::pluralize('abtuse'));
- $this->assertSame('alertables', Inflector::pluralize('alert'));
- $this->assertSame('amazable', Inflector::pluralize('amaze'));
- $this->assertSame('phonezes', Inflector::pluralize('phone'));
- $this->assertSame('criteria', Inflector::pluralize('criterion'));
- $this->assertSame('test_criteria', Inflector::pluralize('test_criterion'));
- $this->assertSame('Criteria', Inflector::pluralize('Criterion'));
- $this->assertSame('TestCriteria', Inflector::pluralize('TestCriterion'));
- $this->assertSame('Test Criteria', Inflector::pluralize('Test Criterion'));
- }
- /**
- * testCustomSingularRule method
- */
- public function testCustomSingularRule(): void
- {
- Inflector::rules('uninflected', ['singulars']);
- Inflector::rules('singular', ['/(eple)r$/i' => '\1', '/(jente)r$/i' => '\1']);
- $this->assertSame('eple', Inflector::singularize('epler'));
- $this->assertSame('jente', Inflector::singularize('jenter'));
- Inflector::rules('singular', ['/^(bil)er$/i' => '\1', '/^(inflec|contribu)tors$/i' => '\1ta']);
- Inflector::rules('irregular', ['spinor' => 'spins']);
- $this->assertSame('spinor', Inflector::singularize('spins'));
- $this->assertSame('inflecta', Inflector::singularize('inflectors'));
- $this->assertSame('contributa', Inflector::singularize('contributors'));
- $this->assertSame('singulars', Inflector::singularize('singulars'));
- $this->assertSame('criterion', Inflector::singularize('criteria'));
- $this->assertSame('test_criterion', Inflector::singularize('test_criteria'));
- $this->assertSame('Criterion', Inflector::singularize('Criteria'));
- $this->assertSame('TestCriterion', Inflector::singularize('TestCriteria'));
- $this->assertSame('Test Criterion', Inflector::singularize('Test Criteria'));
- }
- /**
- * test that setting new rules clears the inflector caches.
- */
- public function testRulesClearsCaches(): void
- {
- $this->assertSame('Banana', Inflector::singularize('Bananas'));
- $this->assertSame('bananas', Inflector::tableize('Banana'));
- $this->assertSame('Bananas', Inflector::pluralize('Banana'));
- Inflector::rules('singular', ['/(.*)nas$/i' => '\1zzz']);
- $this->assertSame('Banazzz', Inflector::singularize('Bananas'), 'Was inflected with old rules.');
- Inflector::rules('plural', ['/(.*)na$/i' => '\1zzz']);
- Inflector::rules('irregular', ['corpus' => 'corpora']);
- $this->assertSame('Banazzz', Inflector::pluralize('Banana'), 'Was inflected with old rules.');
- $this->assertSame('corpora', Inflector::pluralize('corpus'), 'Was inflected with old irregular form.');
- }
- /**
- * Test resetting inflection rules.
- */
- public function testCustomRuleWithReset(): void
- {
- $uninflected = ['atlas', 'lapis', 'onibus', 'pires', 'virus', '.*x'];
- $pluralIrregular = ['as' => 'ases'];
- Inflector::rules('singular', ['/^(.*)(a|e|o|u)is$/i' => '\1\2l'], true);
- Inflector::rules('plural', ['/^(.*)(a|e|o|u)l$/i' => '\1\2is'], true);
- Inflector::rules('uninflected', $uninflected, true);
- Inflector::rules('irregular', $pluralIrregular, true);
- $this->assertSame('Alcoois', Inflector::pluralize('Alcool'));
- $this->assertSame('Atlas', Inflector::pluralize('Atlas'));
- $this->assertSame('Alcool', Inflector::singularize('Alcoois'));
- $this->assertSame('Atlas', Inflector::singularize('Atlas'));
- }
- }
|