* SPDX-License-Identifier: MIT */ declare(strict_types=1); namespace Respect\Validation\Rules; use Respect\Validation\Test\RuleTestCase; use stdClass; /** * @group rule * * @covers \Respect\Validation\Rules\Lowercase * * @author Danilo Benevides * @author Gabriel Caruso * @author Henrique Moody * @author Jean Pimentel */ final class LowercaseTest extends RuleTestCase { /** * {@inheritDoc} */ public static function providerForValidInput(): array { $rule = new Lowercase(); return [ [$rule, ''], [$rule, 'lowercase'], [$rule, 'lowercase-with-dashes'], [$rule, 'lowercase with spaces'], [$rule, 'lowercase with numbers 123'], [$rule, 'lowercase with specials characters like ã ç ê'], [$rule, 'with specials characters like # $ % & * +'], [$rule, 'τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός'], [$rule, '42'], [$rule, '!@#$%^'], ]; } /** * {@inheritDoc} */ public static function providerForInvalidInput(): array { $rule = new Lowercase(); return [ [$rule, 42], [$rule, []], [$rule, new stdClass()], [$rule, 'UPPERCASE'], [$rule, 'CamelCase'], [$rule, 'First Character Uppercase'], [$rule, 'With Numbers 1 2 3'], ]; } }