Phalcon\Test\Unit\Text\TextIncrementTest::testTextIncrementSimpleString PHP Method

testTextIncrementSimpleString() public method

Tests the increment function
Since: 2014-09-29
Author: Nikolaos Dimopoulos ([email protected])
    public function testTextIncrementSimpleString()
    {
        $this->specify("increment does not increment a simple string", function () {
            $source = 'file';
            $expected = 'file_1';
            $actual = Text::increment($source);
            expect($actual)->equals($expected);
        });
    }