| 13 | ) |
| 14 | |
| 15 | type stubPolicy struct { |
| 16 | decision types.PolicyDecision |
| 17 | err error |
| 18 | } |
| 19 | |
| 20 | func (s *stubPolicy) Evaluate(ctx context.Context, req types.AIRequest) (types.PolicyDecision, error) { |
| 21 | if s.err != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected