My project generates a few values (equal partitioning method) for each data type by getting the minimum and maximum values. I am generating these values for functional testing, I am actually passing these values to nunit partner, max amd min are applicable to int, float, double etc.. These values are test data.
Initially I generated them for basic data types like int, float, double, string etc..
Now I need to support data types like DataSet, HashTable and other Collections.
public DataSet MySampleMethod(int param1, string param2, Hashtable ht)
For testing this fuction I can pass values for int and string, but how will I pass test data for ht
or how is test data generated for a hash table?