Consider:
class MyClass<T> where T : class
{
}
In that case, the where clause is enforcing a specification that MyClass is only a generic of a reference type.
Ideally I should have a unit test that tests this specification. However, this unit test obviously won't work, but it explains what I'm trying to accomplish:
[Test]
[DoesNotCompile()]
public void T_must_be_a_reference_type()
{
var test = new MyClass<int>();
}
What can I do to test a spec that's implemented by not allowing the code to compile?
EDIT:
More info: Ok, so my reasoning for doing this (haha) is that I've been following a TDD methodology, in which you can't write any code unless you have a failing unit test. Let's say you had this:
class MyClass<T> { }
What test can you write that would fail unless T were a class? Something like default(T) == null
?
Further EDIT:
So after a "root cause analysis" on this, the problem is that I was relying on default(T)
being null
in a consumer of this class, in an implicit way. I was able to refactor that consumer code into another class, and specify a generic type restriction there (restricting it to class
) which effectively makes that code not compile if someone were to remove the restriction on the class I'm talking about above.