My project generates multiple values โโ(equal split method) for each data type, getting the minimum and maximum values. I generate these values โโfor functional testing, I actually pass these values โโto the partner nunit, max and min are applicable to int, float, double, etc. These values โโare test data.
I originally generated them for basic data types such as int, float, double, string, etc.
Now I need to support data types such as DataSet, HashTable and other collections.
public DataSet MySampleMethod(int param1, string param2, Hashtable ht)
To test this function, I can pass values โโfor int and string, but how can I pass test data for ht or as test data generated for a hash table?
source share