I generated unit tests on a generic class in VS 2008 and it used the type GenericParameterHelper in all of the places that a generic type was used. Is this a placeholder that should be replaced or does it have some use? What are the uses if any?
Here's one of the tests it generated as an example:
/// <summary>
///A test for Count
///</summary>
public void CountTestHelper<TKey, TValue>()
{
ObservableDictionary<TKey, TValue> target = new ObservableDictionary<TKey, TValue>(); // TODO: Initialize to an appropriate value
int actual;
actual = target.Count;
Assert.Inconclusive("Verify the correctness of this test method.");
}
[TestMethod()]
public void CountTest()
{
CountTestHelper<GenericParameterHelper, GenericParameterHelper>();
}