In my code I have separate classes for Aggregate Roots and Command Handlers. If I am unit testing all of my command handlers using GivenWhenThen fixtures, should i still unit test my Aggregate Root classes? If yes, what should be my goal to unit test the Aggregare Root classes?
I am thinking about improving my unit test coverage for the application(I have a goal to achieve 90% unit test coverage), hence this question!
Thanks and appreciate your response!!