I know unit testing is important - everbody knows that. But in most projects that I see there is almost no unit testing (except open source frameworks), but a lot of human acceptance testing.
What's your experience?
|
1
|
I know unit testing is important - everbody knows that. But in most projects that I see there is almost no unit testing (except open source frameworks), but a lot of human acceptance testing. What's your experience? |
|||
|
|
|
|
I don't really like unit testing. I find it doesn't cover the kinds of bugs that the software I write is likely to have. That said, I do use unit testing for more complex algorithmic stuff. Most of the time, I just go on a mission to try and make my software break, though. |
|||
|
|
|
|
I'm currently working for a company that has some projects with unit tests and some without them. In the last project I've worked on, we used TDD. It was my first time writing tests before the "real" code, and it was hard, it was new for me at code level, and also at thinking level. In my current project (legacy code, with some new features), there were very few tests (almost all ignored or not running in CI). I insisted over and over to write unit tests and finally we're getting started =).y Automatic unit tests are very good for a lot of reasons that you can read in books and the Internet. It's hard to start, but you just have to =). |
|||
|
|