The law of diminishing returns applies here:
When your unit test coverage reches a certain point (i'd say 70-80%), the cost of testing the last 20-30% escalates. (You can exceed 100% coverage but I'm simplifying)
Same thing happens with web-tests and integration tests.
The net effect of testing the last 20% within each test discipline has a certain "gold plating" aspect; you probably don't want to do it because the ROI decreases with each additional percentage.
So the pragmatic approach is to aim for 70-80% coverage in all types of testing. The rest you let your customers catch (!)
And yes, the developer does all of these tests. The tester does some of them, not the automated ones.
Edit: My point is NOT the numbers or about using coverage to determine when to stop. There is a certain point where increasing test coverage becomes radically more expensive. IMO that's when you should increase coverage by switching to a different test method, to avoid diminshing returns. Traditional "testers" are usually involved in only some of these techniques.
