Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

4
  • So your answer is after production code? Commented Aug 16, 2013 at 9:23
  • This doesn't answer the question. He's asking if production code is written after integration tests are written. Your answer can be taken either way. Commented Aug 16, 2013 at 9:50
  • 1
    @MathewFoscarini - updated answer. Hope it becomes clearer now. Commented Aug 16, 2013 at 10:13
  • With regard to unit tests, I would take issue with "smallest possible bit of software". Test what is in the contract (e.g. an object's public methods, a library's exported functions) because the contract defines what has to work. Other things are testable, yetdoing so is not only a waste of time but counterproductive. Commented Aug 19, 2013 at 13:13