Roll your own Sitecore Item
One of the most difficult aspects of unit testing against Sitecore is mocking Sitecore items. The Sitecore Item
class is quite a complex class and it’s interface is not structured the way most mocking frameworks require. Mocking frameworks allow you to create dummy objects for use inside tests. But that’s not the only way to create dummy objects. One can always instantiate a class if the classes interface allows it. You might be surprised to learn that you can in fact create an instance of a Sitecore Item in your own code.