NsplTest\ArgsTest::testDeprecatedExpectsInt_Positive PHP Method

testDeprecatedExpectsInt_Positive() public method

    public function testDeprecatedExpectsInt_Positive()
    {
        function deprecatedExpectsIntPositiveTest($arg1, $arg2)
        {
            expectsInt($arg2);
        }
        $this->assertNull(deprecatedExpectsIntPositiveTest(true, 1));
        $this->assertNull(deprecatedExpectsIntPositiveTest('hello world', 0));
    }
ArgsTest