In http://blogoscoped.com/google-chrome/ google put a comic book explaining how their new web browser got developed. I found the part about TDD *very*...
... Yeah, I noticed that too. It would be cool to see how they TDDed the layout engine in more detail. Could someone shed some more light on what they mean...
Sorry, sorry. Pages 9 to 12, and at 11 they talk about testing pages without taking an screenshot: http://www.gamesforthebrain.com/google-chrome/11 Someday if...
A short screencast showing myself and two other developers TDD'ing a Stack in the Java programming language: http://www.vimeo.com/1653402 I think it makes a...
Hi Mahabubur, If you know C#, you should be able to pretty easily follow along with this Java tutorial: http://www.vimeo.com/1653402 If you're looking for...
Background: I am working on a LOB Silverlight application. Somewhat of a MVP pattern has emerged. Our Model generally being a data object from the database,...
Hi all, I've been doing TDD for a while now, and I recently started working at a company that hasn't. I quickly became known as "that crazy testing guy", but...
Hi, Mike, ... Think of this as AOTP, if I may coin the acronym for "Another Opportunity To Pair". It's not what your colleague is asking for, to be sure, but...
... It just seems very strange to inject the object that is responsible for injecting dependencies as a dependency. Would the container inject itself into my...
... I find interesting they can test something visual without screenshots. I find interesting a famous group like Google uses TDD. I find interesting they a...
The team I'm on decided we all ought to read a Scrum book. There's management at the company who have attended the trainings, etc, but those who have never...
http://www.amazon.com/Agile-Project-Management-Microsoft-Professional/dp/073561993X Agile Project Management with Scrum by Ken Schwaber (the man behind scrum ...
I've done lots of this kind of work, and in fact I really enjoy doing it. It's so much better than just refactoring the little bits of code I touch when doing...
It may not be an intro link, but this is my top TDD link. http://haacked.com/archive/2008/01/22/research-supports-the- effectiveness-of-tdd.aspx Enjoy. Ann...
I know the subject of writing tests to support multiple threading has come up before, but I can't find anything very helpful in the archives. Does anyone have...
TestUtil v. 2.4 has been released and includes support (thank you Björn Ekryd) for Enums. http://gtcgroup.com/util/index.html TestUtil is a Java open source...
... Hi, you might remember that some time ago I have sent a case study on this discussion forum about TDD-ing a shared data structure to be used by multiple...
A simple way of creating multithreaded code that is easy to test is to use the Executor framework instead of using Threads explicitly. The Executors class...
I did a free online coding seminar a year back or so that showed how you can TDD multithreaded code (to a larger extent than is generally thought possible). ...
Per feedback, the description has been reworked: For practitioners of Test-Driven Development, TestUtil recursively interrogates the code base and reflectively...
You're looking for integration tests and execution analysis, not unit tests. Unit tests show that a small unit of code is working correctly on its own. ...