NsplTest\ArgsTest::testExpectShorterThan_Positive PHP Method

testExpectShorterThan_Positive() public method

#region shorterThan
    public function testExpectShorterThan_Positive()
    {
        function expectsShorterThanPositiveTest($arg1)
        {
            expects(shorterThan(6), $arg1);
        }
        $this->assertNull(expectsShorterThanPositiveTest('hello'));
    }
ArgsTest