Example #1
0
        public void ShouldAllowGeneratingActions()
        {
            //GIVEN
            var func = Any.Action <int, int, string>();

            //WHEN-THEN
            Assert.DoesNotThrow(() => func(1, 2, "2"));
        }