Generally speaking, for a particular function that I want to test, I think of
the tests I should write before actually coding any of them, and define
functions for each of those tests, and initially set the code for those
functions to something like:
Assert.Fail "The rest of this test has not yet been written."
I find myself typing that over and over and over. I can't be the only person
who does something like this. So, it's obviously not a major thing, but it
sure would be nice if I could instead just type something like:
Assert.TODO
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Generally speaking, for a particular function that I want to test, I think of
the tests I should write before actually coding any of them, and define
functions for each of those tests, and initially set the code for those
functions to something like:
Assert.Fail "The rest of this test has not yet been written."
I find myself typing that over and over and over. I can't be the only person
who does something like this. So, it's obviously not a major thing, but it
sure would be nice if I could instead just type something like:
Assert.TODO