I have a bunch of unit tests (Test1, Test2, etc.), but rather than having them run automatically, I'd like to do something similar to the following:
List<Test> tests = {
Test1,
Test2,
Test3,
...
}
The goal of doing so is to be able to comment out/uncomment (enable/disable) swaths of tests easily to isolate the ones in which I'm immediately interested.
Is that possible, or am I stuck with adding/removiong [disabled] tags to every test header?