mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-02 10:27:48 -05:00
14 lines
334 B
PHP
14 lines
334 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
final class SimplePieTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
public function testSimplePieClassExists(): void {
|
|
self::assertTrue(class_exists(\SimplePie\SimplePie::class));
|
|
}
|
|
|
|
public function testSimplePieMiscClassExists(): void {
|
|
self::assertTrue(class_exists(\SimplePie\Misc::class));
|
|
}
|
|
}
|