NsplTest\ArgsTest::testExpectsInt_Negative PHP Method

testExpectsInt_Negative() public method

    public function testExpectsInt_Negative()
    {
        function expectsIntNegativeTest($arg1, $arg2)
        {
            expects(int, $arg2);
        }
        $this->assertNull(expectsIntNegativeTest('hello world', '1'));
    }
ArgsTest