ArrayAssertTest::hasSizeShouldThrowException PHP Method

hasSizeShouldThrowException() public method

    public function hasSizeShouldThrowException()
    {
        $this->_assertNotHasSize(array(), 1);
        $this->_assertNotHasSize(array('1'), 2);
        $this->_assertNotHasSize(array('1', '2'), 0);
    }
ArrayAssertTest