That's a question I've been asking myself for ages, and still haven't got a satisfying answer to.
But I believe that when it comes to argument validation, you need to distinguish between two cases:
Are you validating the argument to catch logical programming errors?
if (foo == null) throw new ArgumentNullException("foo");
is quite likely an example of that.
Are you validating the argument because it is some external input (supplied by the user, or read from a configuration file, or from a database), which could be invalid and must be rejected?
if (customerDateOfBirth == new DateTime(1900, 1, 1)) throw …;
might be of this type of argument check.
(If you're exposing an API consumed by someone outside your team, point 2 roughly applies as well.)
I suspect that methodologies such as unit testing, design by contract, and to some extent "fail early" focus mostly on the first type of argument validation. That is, they attempt to detect logical programming errors, not invalid input.
If that is the case, then I dare say it doesn't actually matter which method of error detection you follow; each has its own advantages and disadvantages.† In the extreme case (for instance, when you have absolute trust in your abilities to write bug-free code), you could even drop these checks completely.
However, whatever method you choose for detecting logical errors in your code, you still need to validate user input etc., thus the need to distinguish between the two kinds of argument checks.
†) An amateur's incomplete attempt at comparing the relative advantages and disadvantages of Design by Contract, unit testing, and "fail early":
(Though you didn't ask for it... I'll just mention a few key differences.)
Fail early (e.g. explicit argument validation at start of method):
- writing basic checks such as guards against
null are easy to write
- might mix up guards against logical errors and validation of external input with the same syntax
- doesn't allow you to test the interaction of methods
- does not encourage you to define (and thus think about) your methods' contracts rigorously
Unit testing:
- allows you to test code in isolation, without running the actual application, so detecting bugs can be quicker
- if a logical error occurs, you won't have to trace the stack to find the cause, because each unit test stands for a specific "use case" of your code.
- allows you test more than just single methods, e.g. even the interaction between several objects (think stubs & mocks)
- writing easy tests (such as guards against
null) is more work than with the "fail early" approach (if you strictly adhere to the Arrange-Act-Assert pattern)
Design by Contract:
- forces you to explicitly state the contract of your classes (though this is possible with unit tests, too — just in a different way)
- allows you to easily state class invariants (internal conditions that must always hold true)
- not as well supported by many programming languages / frameworks as the other approaches