blob: 8197f5b877645347b5a2da48fe8c2c85c7033cd8 (
plain)
1
2
3
4
5
6
7
8
9
|
<?php
declare(strict_types=1);
class CssXPathTest extends PHPUnit\Framework\TestCase
{
public static function testCssXPathTranslatorClassExists(): void {
self::assertTrue(class_exists('Gt\\CssXPath\\Translator'));
}
}
|