What’s the easiest way to pass a map object (of around 30 elements) from a test suite into a test case?
I would suggest pass via Global Variable(s). Just remember to have the import statement at the top of both.
import internal.GlobalVariable as GlobalVariable
Excellent, thanks grylion54!