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