Phalcon\Test\Unit\Text\TextUpperLowerTest::testLower PHP Метод

testLower() публичный Метод

Tests the lower function
С версии: 2014-09-29
Автор: Nikolaos Dimopoulos ([email protected])
public testLower ( )
    public function testLower()
    {
        $this->specify("lower returns incorrect results", function () {
            expect(Text::lower('hello'))->equals('hello');
            expect(Text::lower('HELLO'))->equals('hello');
            expect(Text::lower('1234'))->equals('1234');
        });
    }