Search Results

0
votes

Is duplicated code more tolerable in unit tests?

Jay Fields coined the phrase that "DSLs should be DAMP, not DRY", where DAMP means descriptive and meaningful phrases. I think the same applies to tests, too. Obviously, too much …
0
votes

Handling TDD interface changes

In TDD, your tests aren't tests. They are executable specifications. IOW: they are an executable encoding of your requirements. Always keep that in mind. Now, suddenly it becomes o …
6
votes

Does C1 code coverage analysis exist for Ruby?

At the moment, there are no C1 coverage tools for Ruby. In fact, there aren't any coverage tools other than RCov. Until recently, it was only possible to write tools like this by p …
1
vote

How should methods updating database tables be unit tested?

They shouldn't be unit tested at all! The whole point of those methods is to integrate with the outside world (i.e. the database). So, make sure your integration tests be …
4
votes

How to write an automated test for thread safety

You might want to check out CHESS: A Systematic Testing Tool for Concurrent Software by Microsoft Research. It is a testin …
2
votes

Pitfalls of code coverage

One of the largest pitfalls of code coverage is that people just talk about code coverage without actually specifying what type of code coverage they are talking about. The characteristics …
1
vote

URL parsing test suite

The Addressable Ruby library has a very comprehensive …
1
vote

How to use TDD when the fix involves changing the method under test’s signature?

You have fallen into the most dangerous trap in TDD: you think TDD is about testing, but it isn't. However, it is easy to fall into that trap, since all the terminology in TDD is about testing. Thi …
0
votes

How to write unit tests for database calls

The whole point of a unit test is to test a unit (duh) in isolation. The whole point of a database call is to integrate with another unit (the database). Ergo: it doesn't make sen …
1
vote

When is a Test not a Unit-test?

A test is not a unit test if it is not testing a unit. Seriously, that's all there is to it. The concept of "unit" in unit testing is not well-defined, in fact, the best definition …
0
votes

Unit Testing Frameworks - What are the key features

One thing that I miss in pretty much every testing framework is uniform assertions, by which I mean that tests should look the same regardless of what I am asserting. Whether I do …
0
votes

Unit Testing Frameworks - What are the key features

Developer-facing unit tests (note that I am not talking about customer-facing acceptance tests!) are like production code: they should be written in such a way that it is obvious what they …
3
votes

Can I aim for TDD or BDD in my started project?

At RubyConf 2007, William Bereza of Atomic Object gave a talk about …
0
votes

Unit testing and the scope of objects - how to test private/internal methods etc?

There's two cases: either your private methods get called from some public method, in which case you can test them through that method. Or, they don't get called from some public method, in which t …