NsplTest\ArgsTest::expectsCustomPositiveTest PHP Method

expectsCustomPositiveTest() public method

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