RunScripts runs the given collection of scripts. This normalizes all rows before comparing them.
(t *testing.T, scripts []ScriptTest)
| 352 | |
| 353 | // RunScripts runs the given collection of scripts. This normalizes all rows before comparing them. |
| 354 | func RunScripts(t *testing.T, scripts []ScriptTest) { |
| 355 | runScripts(t, scripts, true) |
| 356 | } |
| 357 | |
| 358 | // RunScriptsWithoutNormalization runs the given collection of scripts, without normalizing any rows. |
| 359 | func RunScriptsWithoutNormalization(t *testing.T, scripts []ScriptTest) { |