Can MSTest / Command Line Test Utility run generic tests?
I'm able to get MSTest to run a unit test but it can't find my generic tests - perhaps because they aren't actually compiled into the assembly.

Is there a way to run generic tests from the command line or as part of the build process?
Will
[307 byte] By [
Wills] at [2007-12-16]
Yes. From the command line, you should be able to execute the generic tests:
mstest /testcontainer:GenericTest1.generictest
Do you have deployment items? What is the EXE your running?