Here is a dead simple solution: 

If you have several test cases which validate the same conditions or the same behaviour for different entry functions of the same object, refactor the duplicate assertion code into a common function.

The DRY principle is not only valid for production code, it can (and should) also be applied to testing code.