= (
TestParamEntry('alpha', 2, 2),
TestParamEntry('beta', 5, 5),
TestParamEntry('delta', '#expr( #alpha#*#beta# )expr#', 10),
TestParamEntry('epsilon', 'alpha#beta', 'alpha#beta'),
TestParamEntry('gamma', [10, 20, 33, 15], [10, 20, 33, 15]),
TestParamEntry('gamma_prime', '#expr( #gamma# )expr#', [10, 20, 33, 15]),
TestParamEntry('gamma_second', '#expr( list(#gamma#) )expr#', [10, 20, 33, 15]),
TestParamEntry('age', {'Alice': 17, 'Bob': 20, 'Chloe': 21}, {'Alice': 17, 'Bob': 20, 'Chloe': 21}),
TestParamEntry('age_prime', '#expr( #age# )expr#', {'Alice': 17, 'Bob': 20, 'Chloe': 21}),
TestParamEntry('age_second', '#expr( dict(#age#) )expr#', {'Alice': 17, 'Bob': 20, 'Chloe': 21}),
TestParamEntry('csv', '[123,456,789]', '[123,456,789]'),
TestParamEntry('csv_prime', '#expr( #csv# )expr#', '[123,456,789]'),
TestParamEntry('listref', '#expr( eval(#csv#) )expr#', [123, 456, 789]),
TestParamEntry('null', None, None),
TestParamEntry('ref_null', '#null#', None),
TestParamEntry('ref2_null', '#expr( #null# )expr#', None),
TestParamEntry('ref3_null', '#alpha##null##beta#', '2None5'),
)