CssXPathTest.php 223 B

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