mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-15 21:41:06 +00:00
29 lines
678 B
PHP
29 lines
678 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Wallabag\CoreBundle\Tools;
|
||
|
|
||
|
use Symfony\Component\Finder\Finder;
|
||
|
use Wallabag\CoreBundle\Tools\Utils;
|
||
|
|
||
|
class UtilsTest extends \PHPUnit_Framework_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;
|
||
|
}
|
||
|
}
|