mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-21 14:57:52 +00:00
41df17bc46
* test: refactor test suite * docs * refactor * yup * docs
37 lines
985 B
PHP
37 lines
985 B
PHP
<?php
|
|
|
|
namespace RssBridge\Tests;
|
|
|
|
use CacheInterface;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class CacheImplementationTest extends TestCase
|
|
{
|
|
public function getCacheClassNames()
|
|
{
|
|
$caches = [];
|
|
foreach (glob(PATH_LIB_CACHES . '*.php') as $path) {
|
|
$caches[] = [basename($path, '.php')];
|
|
}
|
|
return $caches;
|
|
}
|
|
|
|
/**
|
|
* @dataProvider getCacheClassNames
|
|
*/
|
|
public function testClassName($path)
|
|
{
|
|
$this->assertTrue($path === ucfirst($path), 'class name must start with uppercase character');
|
|
$this->assertEquals(0, substr_count($path, ' '), 'class name must not contain spaces');
|
|
$this->assertStringEndsWith('Cache', $path, 'class name must end with "Cache"');
|
|
}
|
|
|
|
/**
|
|
* @dataProvider getCacheClassNames
|
|
*/
|
|
public function testClassType($path)
|
|
{
|
|
$this->assertTrue(is_subclass_of($path, CacheInterface::class), 'class must be subclass of CacheInterface');
|
|
}
|
|
}
|