Skip to content

Instantly share code, notes, and snippets.

@p
Created January 27, 2011 02:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save p/797930 to your computer and use it in GitHub Desktop.
Save p/797930 to your computer and use it in GitHub Desktop.
task_core_queue_test.php
<?php
/**
*
* @package testing
* @copyright (c) 2010 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
class phpbb_cron_task_core_queue_test extends PHPUnit_Framework_TestCase
{
public function setUp()
{
$this->task = new phpbb_cron_task_core_queue;
}
public function test_run()
{
//$this->task->run();
}
public function test_is_runnable()
{
//$this->assertTrue($this->task->is_runnable());
}
public function test_should_run()
{
//$this->assertTrue($this->task->should_run());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment