mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-02 10:27:48 -05:00
10 lines
230 B
PHP
10 lines
230 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
final class CssXPathTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
public static function testCssXPathTranslatorClassExists(): void {
|
|
self::assertTrue(class_exists('Gt\\CssXPath\\Translator'));
|
|
}
|
|
}
|