Is there a strick one-to-one correspondence with a test in VS and a method? In the end, it's just code, right?
I'd love to run-time generate separate tests based on data input.
I realize I could just have one test that loops through my data and performs all of the desired operations, but I'd rather have each item be represented by an individual test.
This is super straight-forward in Ruby-based test solutions.
...so I'm curious.
Clarification: A method marked as [TestMethod] gets special love in reporting. Can I generate this special love without a method for each? How?