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

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/TextTest.php')
-rw-r--r--tests/TextTest.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/TextTest.php b/tests/TextTest.php
new file mode 100644
index 000000000..5bbab6a0f
--- /dev/null
+++ b/tests/TextTest.php
@@ -0,0 +1,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);
+ }
+
+}