package linguistics import ( "testing" "github.com/stretchr/testify/require" ) func TestFactory_WiresProviders(t *testing.T) { // We won't spin a DB/cache here; this is a smoke test of wiring methods f := NewLinguisticsFactory(nil, nil, 2, true) ta := f.GetTextAnalyzer().(*BasicTextAnalyzer) require.NotNil(t, ta) }