Is it possible to have a generic abstract base test class for unit tests in Visual Studio 2008?
If the base abstract test class is not generic, all its base methods marked with [TestMethod] are properly inherited in derived classes and executed in Visual Studio. If the base class is generic, then Visual Studio doesn't execute those methods in derived classes.
Imagine you have a bunch of parser classes implementing this interface (simplified):
// parses the input stream into an
// instance of T
interface IParser<T>
{
IParserResult<T> Parse(byte[] input);
}
And imagine you have a bunch of parsers which can parse a certain stream:
class HeaderParser : IParser<T> { ... }
class SomeOtherParser : IParser<T> { ... }
... many more ...
To test the functionality of each parser, a logical base testing class should look like this:
[TestClass]
abstract class ParserTest<T>
{
[TestMethod]
public void TestParser()
{
// 1. init parser
var parser = new T();
// 2. get data
var input = GetInputData();
// 3. parse
var result = parser.Parse(input);
// 4. make common assertions
Assert.AreEqual(ParserResultType.Success, result.Type);
Assert.AreEqual(input.Length, result.NextDataOffset);
// 5. specific validation
Validate(result.Value);
}
protected abstract byte[] GetInputData();
protected abstract void Validate(T result);
}
I fail to see the benefit in adding a new test method to each derived test class, when multiple derived test classes differ only in the input data and result validation logic.
Since all unit tests follow the same pattern:
1. init parser 2. get test input data 3. call parser 4. do common checks 5. check if data parsed correctly
it looks like I should extract this functionality.
After all, I did write several tests before I realized that I am repeating myself. :)
[TestMethod]needs to be applied on the overridden class as well for it to be "seen" as test method. – Lucero Jul 15 '11 at 8:12Testmethod becomes a member of each derived class, and it doesn't lose its attribute. Additionally, if I remove generics, then it works as expected. – Groo Jul 15 '11 at 8:15