Recommended thing for a TDD newbie
I'm very new to TDD world. I have a few questions regarding TDD.
Do I have to do test-first in TDD? I heard that TDD is not about test. It's about design. I'm agreed that it's good to do test-first but what I like to know is that is it still TDD if we follow the test-last approach?
Shall we prefer to use BDD over TDD? I used to list out the specification of my task first and I try to write the test case based on my specification. Is it wrong approach? Do you guys prefer using BDD or TDD for your development?
Mocking? Some people from my team used to say 开发者_开发百科that they are praticsing TDD. But they never follow test-first approach. they never mock the data. Do we have to mock the data in TDD?
"Using Mock Library" Vs "creating the mock class with data manually". Do you prefer to use mock library or create the mock classes with some mock data?
Any recommended book for TDD or BDD? I read Kent Beck's classic Test-Driven Development - By Example. I found that this book is published in very early stage of TDD so some of the things in this book are not a bit outdated.
1). Do I have to do test-first in TDD? I heard that TDD is not about test. It's about design. I'm agreed that it's good to do test-first but what I like to know is that is it still TDD if we follow the test-last approach?
Yes! Strictly speaking TDD is Test-Driven Development. So the development is driven by the test. So you test first, then develop program to pass all tests.
2). Shall we prefer to use BDD over TDD? I used to list out the specification of my task first and I try to write the test case based on my specification. Is it wrong approach? Do you guys prefer using BDD or TDD for your development?
I think you should balance them. Use other technique to provide overall design first as best as time provide (do risk management to find appropriate time you should spend on designing) (Find a paper about "RUP essential". It give quite a good idea about balancing agile and less-agile). Identify the most critical parts then creates test and develop to pass the test.
3).Mocking? Some people from my team used to say that they are praticsing TDD. But they never follow test-first approach. they never mock the data. Do we have to mock the data in TDD?
Test-first and mocking is not the same thing. Mocking allows code to be more testable as well as be testable when other part (which this code relies on) does not exist. So if there is no such dependency (IF!!), then you can to not mock them. (Read "Working Effectively with Legacy Code" about Seam point for more details).
4). "Using Mock Library" Vs "creating the mock class with data manually". Do you prefer to use mock library or create the mock classes with some mock data?
I think it just like using someone-else library or create yourown. Totally depends on the situation and many factors. For example, if you project is big and you can find appropriate mock library, use it.
5). Any recommended book for TDD or BDD? I read Kent Beck's classic Test-Driven Development - By Example. I found that this book is published in very early stage of TDD so some of the things in this book are not a bit outdated.
There are list of books on TDD here.
Hope this helps.
- Yes, it is about design, but this design methodology does involve writing tests first. People follow this rule with varying degrees of strictness, but most people I know who practice TDD tend to believe that it's better to follow the rule.
- BDD has been described as TDD done right. The difference is minimal. Essentially BDD just makes the point about tests as specifications more explicit.
- There is a great deal of disagreement about the usefulness of mocks. I personally prefer to test interfaces, and I avoid placing expectations in a mock. That said, testing in isolation is still a good idea for a wide variety of reasons, not the least of which is test speed. There's nothing more annoying than refactoring a piece of code which still conforms exactly to the previous interface, having a fully-working end result, and yet all the tests fail because the expectations on the mock weren't met anymore. Bad mock usage results in testing of implementation details rather than ensuring that the work performed is correct.
- See #3. I prefer to just use a stub with no expectations or alternatively an integration test.
- Test-Driven Development: A Practical Guide by Dave Astels. Highly recommended.
Do I have to do test-first in TDD?
Yes, TDD is, in essence:
vagueness -> bullet points -> tests -> code
If you are using some other process, it can make sense to use some of the tools and techniques, but it won't really be TDD. For whatever that is worth.
Mocking?
There are 4 more or less viable alternatives which different gurus will advocate.
mock-to-zero: mock every dependency such that every unit (e.g. java class) is effectively isolation tested.
mock-to-linear: mock cyclic dependencies only, such that there is a linear ordering of tests whereby each unit is tested only with tested dependencies.
mock-for-speed: only mock slow, asynchronous or otherwise problematic interfaces.
zero-mocking: just test stuff, use a debugger to work out what's going on if things break.
Avoid #1 if you don't love your mocking tool, and avoid #4 if you don't love your debugger.
For BDD you can find a great reference in :
- The Cucumber Book: Behaviour-Driven Development for Testers and Developers (Pragmatic Programmers)
- Specification by example a book by Gojko Adzic
- The Secret Ninja Cucumber Scrolls
You can also follow the work of Dan North for him the difference between TDD and BDD is small
Other link Learning Behavior Driven Development (BDD)
For my self I think if you do BDD you already do TDD
I hope this helps
- Yes testing first is pretty much what TDD is.
- If you have no experience with either, I would start with TDD to get your feet wet (my opinion).
- You don't HAVE to mock to do TDD. However, if your application has classes which depend on other classes (which is pretty much guaranteed) you should come across mocking. BTW mocking is not about mocking the data, but mocking the interaction between the class you are testing and its collaborators, the other class(es) it is dependent upon.
- Mocking by hand is a good way to understand it but mocking / isolation frameworks is the way to go if you don't want to spend your whole time writing fake implementations.
- IMO, Beck's book is a timeless classic and a great way to start. If you work with .NET, I just read The Art of Unit Testing which covers in great detail good techniques and practices when unit testing.
(I picked the easiest question to answer as I am not qualified to answer other questions )
Any recommended book for TDD or BDD?
Agile Software Development, Principles, Patterns, and Practices , by Robert C. Martin
Extreme Programming Explained ,by Kent Beck
Do I have to do test-first in TDD?
Yes, TDD is necessarily test-first. Writing the test first allows to think about the function to be written in terms of behavior, rather than of implementation, focusing on invoking the function and verifying the result.
This leads to testable code ; otherwise you may find yourself in a dead end.
Writing tests first also make it easier not to forget or neglect tests.
Moreover, writing - and failing - the tests first allows testing the test. A test written after the code might never fail.
Shall we prefer to use BDD over TDD?
Some say BDD is TDD done right as the focus is put on specifications.
Do we have to mock the data in TDD? Some people from my team used to say that they are praticsing TDD. But they never follow test-first approach.
You don't have to use mock objects. There are just a tool, that can be convenient sometimes.
"Using Mock Library" Vs "creating the mock class with data manually".
I never felt the need to resort to a mock object generator.
Any recommended book for TDD or BDD?
TDD by example, is a very good tutorial and presents a bunch of patterns. Another great book, more a reference is xUnit patterns.
精彩评论