ZF-8222: format class name for class checks
[zend.git] / tests / Zend / Queue / Queue1Test.php
blobf0e6a206f3f47d9934c93f86bb09fad0554379ef
1 <?php
2 /**
3 * Zend Framework
5 * LICENSE
7 * This source file is subject to the new BSD license that is bundled
8 * with this package in the file LICENSE.txt.
9 * It is also available through the world-wide-web at this URL:
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
15 * @category Zend
16 * @package Zend_Queue
17 * @subpackage UnitTests
18 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
19 * @license http://framework.zend.com/license/new-bsd New BSD License
20 * @version $Id$
24 * The adapter test class provides a universal test class for all of the
25 * abstract methods.
27 * All methods marked not supported are explictly checked for for throwing
28 * an exception.
31 /** PHPUnit Test Case */
32 require_once 'PHPUnit/Framework/TestCase.php';
34 /** TestHelp.php */
35 require_once dirname(__FILE__) . '/../../TestHelper.php';
37 /** Zend_Queue_Queue2Test */
38 require_once 'Zend/Queue/QueueBaseTest.php';
40 /**
41 * @category Zend
42 * @package Zend_Queue
43 * @subpackage UnitTests
44 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
45 * @license http://framework.zend.com/license/new-bsd New BSD License
46 * @group Zend_Queue
48 class Zend_Queue_Queue1Test extends Zend_Queue_QueueBaseTest
50 protected function setUp()
52 date_default_timezone_set('GMT');
54 // Test Zend_Config
55 $this->config = array(
56 'name' => 'queue1'
59 $this->queue = new Zend_Queue('Array', $this->config);