Tagged Questions
The testable-code tag has no wiki summary.
4
votes
2answers
505 views
NUnit conflict with Debug.Assert
I'm using NUnit to write unit tests for a libary a colleague of mine has written. His library contains a lot of Debug.Asserts which triggers on invalid input. When I'm writing the unit tests and give ...
4
votes
3answers
535 views
Unit testing Visitor pattern architecture
I've introduced visitors as one of core architecture ideas in one of my apps. I have several visitors that operate on a same stuff. Now, how should I test it? Some tests I'm thinking of are a bit ...