NsplTest\ArgsTest::testExpectsNumeric_Negative PHP Method

testExpectsNumeric_Negative() public method

    public function testExpectsNumeric_Negative()
    {
        function expectsNumericNegativeTest($arg1, $arg2)
        {
            expects(numeric, $arg2);
        }
        $this->assertNull(expectsNumericNegativeTest('hello', 'world'));
    }
ArgsTest