(t *testing.T)
| 157 | } |
| 158 | |
| 159 | func TestRunCaseWithPluginJSON(t *testing.T) { |
| 160 | buildHashicorpGoPlugin() |
| 161 | defer removeHashicorpGoPlugin() |
| 162 | |
| 163 | testCase := TestCasePath(demoTestCaseWithPluginJSONPath) |
| 164 | err := NewRunner(nil).Run(&testCase) // hrp.Run(testCase) |
| 165 | if err != nil { |
| 166 | t.Fatal() |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | func TestRunCaseWithPluginYAML(t *testing.T) { |
| 171 | buildHashicorpGoPlugin() |
nothing calls this directly
no test coverage detected