You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/tests/Zend/Paginator/Adapter/NullTest.php

74 lines
2.0 KiB
PHP

<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Paginator
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: NullTest.php 16225 2009-06-21 20:34:55Z thomas $
*/
/**
* @see Zend_Paginator_Adapter_Null
*/
require_once 'Zend/Paginator/Adapter/Null.php';
/**
* @see PHPUnit_Framework_TestCase
*/
require_once 'PHPUnit/Framework/TestCase.php';
/**
* @category Zend
* @package Zend_Paginator
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Paginator_Adapter_NullTest extends PHPUnit_Framework_TestCase
{
/**
* @var Zend_Paginator_Adapter_Array
*/
private $_adapter;
/**
* Prepares the environment before running a test.
*/
protected function setUp ()
{
parent::setUp();
$this->_adapter = new Zend_Paginator_Adapter_Null(101);
}
/**
* Cleans up the environment after running a test.
*/
protected function tearDown()
{
$this->_adapter = null;
parent::tearDown();
}
public function testGetsItems()
{
$actual = $this->_adapter->getItems(0, 10);
$this->assertEquals(array_fill(0, 10, null), $actual);
}
public function testReturnsCorrectCount()
{
$this->assertEquals(101, $this->_adapter->count());
}
}