Files
fil/e2e/php/tests/ValidatorManagementTest.php

41 lines
949 B
PHP
Raw Permalink Normal View History

2026-06-01 23:40:55 +02:00
<?php
// This file is auto-generated by alef — DO NOT EDIT.
// alef:hash:4e15143f4af1ae8bafbdb1506ef057da924484c66a19483966333558ad437e75
// To regenerate: alef generate
// To verify freshness: alef verify --exit-code
// Issues & docs: https://github.com/kreuzberg-dev/alef
declare(strict_types=1);
namespace Kreuzberg\E2e;
use PHPUnit\Framework\TestCase;
use Kreuzberg\Kreuzberg;
use Kreuzberg\ExtractionConfig;
/** E2e tests for category: validator_management. */
final class ValidatorManagementTest extends TestCase
{
/** Clear all validators and verify list is empty */
public function test_validators_clear(): void
{
$this->expectNotToPerformAssertions();
$result = Kreuzberg::clearValidators();
}
/** List all registered validators */
public function test_validators_list(): void
{
$this->expectNotToPerformAssertions();
$result = Kreuzberg::listValidators();
}
}