public void ThrowsOnNullInvocation(AndInterceptionPolicy sut)
 {
     sut.Invoking(s => s.ShouldIntercept(null))
         .ShouldThrow<ArgumentNullException>();
 }