This commit is contained in:
80
e2e/php/tests/RegistryTest.php
generated
Normal file
80
e2e/php/tests/RegistryTest.php
generated
Normal file
@@ -0,0 +1,80 @@
|
||||
<?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: registry. */
|
||||
final class RegistryTest extends TestCase
|
||||
{
|
||||
|
||||
/** List document extractors */
|
||||
public function test_list_document_extractors(): void
|
||||
{
|
||||
$this->expectNotToPerformAssertions();
|
||||
$result = Kreuzberg::listDocumentExtractors();
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
/** List embedding backends */
|
||||
public function test_list_embedding_backends(): void
|
||||
{
|
||||
$this->expectNotToPerformAssertions();
|
||||
$result = Kreuzberg::listEmbeddingBackends();
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
/** List OCR backends */
|
||||
public function test_list_ocr_backends(): void
|
||||
{
|
||||
$this->expectNotToPerformAssertions();
|
||||
$result = Kreuzberg::listOcrBackends();
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
/** List post-processors */
|
||||
public function test_list_post_processors(): void
|
||||
{
|
||||
$this->expectNotToPerformAssertions();
|
||||
$result = Kreuzberg::listPostProcessors();
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
/** List renderers */
|
||||
public function test_list_renderers(): void
|
||||
{
|
||||
$this->expectNotToPerformAssertions();
|
||||
$result = Kreuzberg::listRenderers();
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
/** List validators */
|
||||
public function test_list_validators(): void
|
||||
{
|
||||
$this->expectNotToPerformAssertions();
|
||||
$result = Kreuzberg::listValidators();
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user