one assert per test seems... as you said, indicative of zealotry. if you already have your object there, why not test for the changes you expect?
So you have one test that indicates that a log error is outut. then another that tests that the property X in the return from the error is what you expect. then another test to determine that propery Y in return is what you expect?
that to me is wasteful, unclear, bloated. About the only useful result I can see that is it allows bragging about how many tests a project has.
Furthermore, if you have a one-assertion rule, some bright spark will realize he can write a single assertion that checks for the conjunction of all the individual postconditions.
That's one way to get dogma-driven assertion roulette, as you will not know which particular error occurred.
So you have one test that indicates that a log error is outut. then another that tests that the property X in the return from the error is what you expect. then another test to determine that propery Y in return is what you expect?
that to me is wasteful, unclear, bloated. About the only useful result I can see that is it allows bragging about how many tests a project has.