NsplTest\ArgsTest::testExpectsShorterThan_Negative PHP Method

testExpectsShorterThan_Negative() public method

    public function testExpectsShorterThan_Negative()
    {
        function expectsShorterThanNegativeTest($arg1)
        {
            expects(shorterThan(6), $arg1);
        }
        $this->assertNull(expectsShorterThanNegativeTest('hello world'));
    }
ArgsTest