Elgg\Cache\LRUCacheTest::testThrowExceptionOnNegativeSize PHP 메소드

testThrowExceptionOnNegativeSize() 공개 메소드

    public function testThrowExceptionOnNegativeSize()
    {
        $this->setExpectedException('\\InvalidArgumentException');
        $pool = new LRUCache(-2);
    }