Files
fil/e2e/swift_e2e/Tests/KreuzbergE2ETests/RegistryTests.swift
Henrik Jess Nielsen b4c07d3693
All checks were successful
Deploy fil (kreuzberg) / deploy (push) Successful in 49s
Nomad changes
2026-06-01 23:40:55 +02:00

49 lines
1.3 KiB
Swift
Generated

// 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
// swift-format-ignore-file
import XCTest
import Foundation
#if canImport(FoundationNetworking)
import FoundationNetworking
#endif
import Kreuzberg
import RustBridge
/// E2e tests for category: registry.
final class RegistryTests: XCTestCase {
func testListDocumentExtractors() throws {
// List document extractors
let result = try Kreuzberg.listDocumentExtractors()
}
func testListEmbeddingBackends() throws {
// List embedding backends
let result = try Kreuzberg.listEmbeddingBackends()
}
func testListOcrBackends() throws {
// List OCR backends
let result = try Kreuzberg.listOcrBackends()
}
func testListPostProcessors() throws {
// List post-processors
let result = try Kreuzberg.listPostProcessors()
}
func testListRenderers() throws {
// List renderers
let result = try Kreuzberg.listRenderers()
}
func testListValidators() throws {
// List validators
let result = try Kreuzberg.listValidators()
}
}