RunScriptsWithoutNormalization runs the given collection of scripts, without normalizing any rows.
(t *testing.T, scripts []ScriptTest)
| 357 | |
| 358 | // RunScriptsWithoutNormalization runs the given collection of scripts, without normalizing any rows. |
| 359 | func RunScriptsWithoutNormalization(t *testing.T, scripts []ScriptTest) { |
| 360 | runScripts(t, scripts, false) |
| 361 | } |
| 362 | |
| 363 | // runScripts is the implementation of both RunScripts and RunScriptsWithoutNormalization. |
| 364 | func runScripts(t *testing.T, scripts []ScriptTest, normalizeRows bool) { |