-2
votes
Generating classes automatically from unit tests?
I use Rhino Mocks for this, when I just need a simple stub.
http://www.ayende.com/wiki/Rhino+Mocks+-+Stubs.ashx …
0
votes
Handling TDD interface changes
When interfaces change, you should expect tests to break. If too many tests break, this means that your system is too tightly coupled and too many things depend on that interface. You should expect …
1
vote
How to deal with code coverage?
Code coverage tells you how big your "bug catching" net is, but it doesn't tell you how big the holes are in your net.
Use it as an indicator to gauge your testing efforts but not as an ab …
1
vote
Verifying contents of NHibernate Criteria
A co-worker recently did this
encapsulate each criteria query in it's own class (specification).
built an expression builder that will spit out the query to the string.
tested that the gene …
