Files
query-orchestration/internal/document/clean/service_test.go
T

14 lines
236 B
Go
Raw Normal View History

2025-01-23 14:56:20 +00:00
package documentclean_test
import (
documentclean "queryorchestration/internal/document/clean"
2025-01-23 14:56:20 +00:00
"testing"
"github.com/stretchr/testify/assert"
)
func TestService(t *testing.T) {
svc := documentclean.New()
assert.NotNil(t, svc)
}