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