blob: a5f4a1844b7ba3eafd452754fcb465b070e3f017 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?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));
}
}
|