15 lines
251 B
PHP
15 lines
251 B
PHP
|
<?php
|
||
|
namespace ActivityPub\Test\Controllers;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
class OutboxControllerTest extends TestCase
|
||
|
{
|
||
|
public function testOutboxController()
|
||
|
{
|
||
|
// TODO implement me
|
||
|
$this->assertTrue( false );
|
||
|
}
|
||
|
}
|
||
|
?>
|