Pass a map/list from test suite to test case?

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

image

Excellent, thanks grylion54!