Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TextTest.php « tests - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5bbab6a0fed8798006952e42da37954c926d606e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
namespace OCA\Text\Tests;

use OCA\Social\Controller\NavigationController;
use OCA\Social\Controller\SocialPubController;
use OCA\Social\Service\CacheActorService;
use OCA\Text\AppInfo\Application;
use OCP\IL10N;
use OCP\IRequest;

class TextTest extends \PHPUnit\Framework\TestCase {

	public function testDummy() {
		$app = new Application();
		$this->assertEquals('text', $app::APP_NAME);
	}

}