123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- /*
- * This file is part of the Sonata Project package.
- *
- * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Sonata\AdminBundle\Tests\Translator;
- use Sonata\AdminBundle\Translator\NativeLabelTranslatorStrategy;
- class NativeLabelTranslatorStrategyTest extends \PHPUnit_Framework_TestCase
- {
- /**
- * @dataProvider getLabelTests
- */
- public function testLabel($expectedLabel, $label)
- {
- $strategy = new NativeLabelTranslatorStrategy();
- $this->assertSame($expectedLabel, $strategy->getLabel($label, 'form', 'label'));
- }
- public function getLabelTests()
- {
- return array(
- array('Is Valid', 'isValid'),
- array('Is Valid', 'is_Valid'),
- array('Is0 Valid', 'is0Valid'),
- array('Is Valid', '_isValid'),
- array('Is Valid', '__isValid'),
- array('Is Valid', 'isValid_'),
- array('Is Valid', 'isValid__'),
- array('Is Valid', '__isValid__'),
- array('Is Valid Super Cool', 'isValid_SuperCool'),
- );
- }
- }
|