aboutsummaryrefslogtreecommitdiff
path: root/tests/lib/SimplePie/SimplePieTest.php
blob: 63b2e51f9258be12213af9192d119ca64c0e0d4b (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));
	}
}