22 lines
357 B
PHP
22 lines
357 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* Test class for Zend_View_Helper_Qurl
|
||
|
* Created Thu, 24 Jan 2013 12:56:08 +0000
|
||
|
*
|
||
|
**/
|
||
|
class Zend_View_Helper_QurlTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Test for Zend_View_Helper_QUrl::QUrl()
|
||
|
*
|
||
|
**/
|
||
|
public function testQUrl()
|
||
|
{
|
||
|
$this->markTestIncomplete('testQUrl is not implemented yet');
|
||
|
}
|
||
|
|
||
|
}
|