NsplTest\ArgsTest::testDeprecatedExpectsInt_Negative PHP Method

testDeprecatedExpectsInt_Negative() public method

    public function testDeprecatedExpectsInt_Negative()
    {
        function deprecatedExpectsIntNegativeTest($arg1, $arg2)
        {
            expectsInt($arg2);
        }
        $this->assertNull(deprecatedExpectsIntNegativeTest('hello world', '1'));
    }
ArgsTest