2019-03-06 09:50:21 +00:00
|
|
|
<?php
|
|
|
|
namespace OCA\Social\Tests;
|
|
|
|
|
2022-04-15 11:01:18 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2019-03-06 09:50:21 +00:00
|
|
|
use OCA\Social\Controller\NavigationController;
|
|
|
|
use OCA\Social\Controller\SocialPubController;
|
|
|
|
use OCA\Social\Service\CacheActorService;
|
|
|
|
use OCP\IL10N;
|
|
|
|
use OCP\IRequest;
|
|
|
|
|
2022-04-15 11:01:18 +00:00
|
|
|
class SocialTest extends TestCase {
|
2019-03-06 09:50:21 +00:00
|
|
|
|
|
|
|
public function testDummy() {
|
|
|
|
/**
|
|
|
|
* Dummy test to check if phpunit is working properly
|
|
|
|
*/
|
|
|
|
$this->assertTrue(true);
|
|
|
|
}
|
|
|
|
|
2020-06-25 14:02:58 +00:00
|
|
|
}
|