mirror of
https://github.com/wallabag/wallabag.git
synced 2025-09-30 19:22:12 +00:00
14 lines
230 B
PHP
14 lines
230 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Wallabag\Controller\Api;
|
||
|
|
||
|
use Tests\Wallabag\WallabagTestCase;
|
||
|
|
||
|
class OAuthSimpleTest extends WallabagTestCase
|
||
|
{
|
||
|
public function testBasicAssertion(): void
|
||
|
{
|
||
|
$this->assertTrue(true);
|
||
|
}
|
||
|
}
|