NsplTest\ArgsTest::deprecatedExpectsPositiveTest PHP Method

deprecatedExpectsPositiveTest() public method

        function deprecatedExpectsPositiveTest($arg1)
        {
            expects($arg1, 'to be a positive integer', function ($arg) {
                return is_int($arg) && $arg > 0;
            });
        }
ArgsTest