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