Interceptor
                .For<SomeUnmockableObject>()
                .Setup( y => y.Foo(Arg.With<int>(x => x.Should().Be(3, ""))))
                .Returns(3)
                .Execute( y => y.Foo(3))