You can specify the 2nd argument as Arg<T>.Is.Anything
, then the actual value gets ignored.
However note that using this you need to use Arg for all arguments. Which means you need to use on the first argument: Arg<int>.Is.Equal(123)
.
You can specify the 2nd argument as Arg<T>.Is.Anything
, then the actual value gets ignored.
However note that using this you need to use Arg for all arguments. Which means you need to use on the first argument: Arg<int>.Is.Equal(123)
.