NsplTest\ArgsTest::testExpectShorterThan_Positive PHP Метод

testExpectShorterThan_Positive() публичный Метод

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