wallabag/tests/Wallabag/CoreBundle/Tools/UtilsTest.php
2017-12-18 13:29:33 +01:00

29 lines
693 B
PHP

<?php
namespace Tests\Wallabag\CoreBundle\Tools;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Finder\Finder;
use Wallabag\CoreBundle\Tools\Utils;
class UtilsTest extends TestCase
{
/**
* @dataProvider examples
*/
public function testCorrectWordsCountForDifferentLanguages($text, $expectedCount)
{
static::assertEquals((float) $expectedCount, Utils::getReadingTime($text));
}
public function examples()
{
$examples = [];
$finder = (new Finder())->in(__DIR__ . '/samples');
foreach ($finder->getIterator() as $file) {
$examples[] = [$file->getContents(), 1];
}
return $examples;
}
}