var mock = Interceptor
                .For<SomeUnmockableObject>()
                .Setup(x => x.FooAsync(Arg.Ignore<int>()))
                .Returns(4)
                .Setup(x => x.FooAsync(1))