JBZoo\PHPUnit\PerformanceTest::testSlugSpeed PHP Метод

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

public testSlugSpeed ( )
    public function testSlugSpeed()
    {
        $_this = $this;
        runBench(array('Slug::filter' => function () use($_this) {
            return Slug::filter($_this->getRandomString(15));
        }), array('count' => 1000, 'name' => 'Slug speed'));
    }