예제 #1
0
파일: PaginatorTest.php 프로젝트: Rovak/zf2
 public function testSetAdapterPluginManagerWithAdaptersThrowsInvalidArgumentException()
 {
     $this->setExpectedException('Zend\\Paginator\\Exception\\InvalidArgumentException', 'Pagination adapter manager must extend AdapterPluginManager; received "array"');
     $this->_paginator->setAdapterPluginManager(array(new stdClass()));
 }