(t *testing.T)
| 24 | } |
| 25 | |
| 26 | func TestFindActionInstance_Options(t *testing.T) { |
| 27 | //t.Logf("%p", FindActionInstance(ActionBlock, maps.Map{})) |
| 28 | //t.Logf("%p", FindActionInstance(ActionBlock, maps.Map{})) |
| 29 | //logs.PrintAsJSON(FindActionInstance(ActionBlock, maps.Map{}), t) |
| 30 | logs.PrintAsJSON(waf.FindActionInstance(waf.ActionBlock, maps.Map{ |
| 31 | "timeout": 3600, |
| 32 | }), t) |
| 33 | } |
| 34 | |
| 35 | func BenchmarkFindActionInstance(b *testing.B) { |
| 36 | runtime.GOMAXPROCS(1) |
nothing calls this directly
no test coverage detected