mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-13 13:03:20 +00:00
18 lines
328 B
PHP
18 lines
328 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();
|
|
}
|
|
|
|
}
|
|
|