(t *testing.T, clauses []ast.Clause, store factstore.SimpleInMemoryStore, options ...EvalOption)
| 91 | } |
| 92 | |
| 93 | func analyzeAndEvalProgram(t *testing.T, clauses []ast.Clause, store factstore.SimpleInMemoryStore, options ...EvalOption) error { |
| 94 | t.Helper() |
| 95 | return analyzeAndEvalProgramWithDecls(t, clauses, nil, store, options...) |
| 96 | } |
| 97 | |
| 98 | // analyzeAndEvalProgram analyzes and evaluates a given program on the given facts, modifying the |
| 99 | // fact store in the process. |
no test coverage detected