this question is very easystest-specific (but i don't know a better place to ask).
Is there a way to use parameters of type Array or List? Is there probably a separator character that could be used like this (excel table):
testMethod doubleList stringList 3.5,3.4,6.7 a,b,c
(the separator char is here ',')So that i get two paramters List doublelist and List stringList. At the moment i do this by hand: using all as String parameter and "split" them on ','. and then converting the single strings to desired type. Is there a "easier" way with easytest?