Файл: concrete5.7.5.6/concrete/vendor/zendframework/zend-queue/tests/ZendQueue/Adapter/NullTest.php
Строк: 58
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Queue
*/
namespace ZendQueueTestAdapter;
/*
* The adapter test class provides a universal test class for all of the
* abstract methods.
*
* All methods marked not supported are explictly checked for for throwing
* an exception.
*/
/**
* @category Zend
* @package Zend_Queue
* @subpackage UnitTests
* @group Zend_Queue
*/
class NullTest extends AdapterTest
{
/**
* getAdapterName() is an method to help make AdapterTest work with any
* new adapters
*
* You must overload this method
*
* @return string
*/
public function getAdapterName()
{
return 'Null';
}
/**
* getAdapterName() is an method to help make AdapterTest work with any
* new adapters
*
* You may overload this method. The default return is
* 'Zend_Queue_Adapter_' . $this->getAdapterName()
*
* @return string
*/
public function getAdapterFullName()
{
return 'ZendQueueAdapter\' . $this->getAdapterName();
}
public function getTestConfig()
{
return array('driverOptions' => array());
}
// test the constants
public function testConst()
{
}
}