Let's say I have a static class named DummyStaticClass
And the code I would like to mock look like the following
var returnVal = DummyStaticClass.DummyProperty1.DummyProperty2.YetAnotherDummyProperty.DummyMethod(someInput).MoreProperty;
Is there any convenient way to mock this call ?