mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-11 03:53:13 +00:00
16 lines
344 B
PHP
16 lines
344 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/../PhraseanetPHPUnitAbstract.class.inc';
|
|
|
|
class task_abstractTest extends PhraseanetPHPUnitAbstract
|
|
{
|
|
|
|
public function testCreate()
|
|
{
|
|
$appbox = appbox::get_instance(\bootstrap::getCore());
|
|
|
|
$task = task_abstract::create($appbox, 'task_period_apibridge');
|
|
$task->delete();
|
|
}
|
|
}
|