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: 79376212e40ab2f23eb90e0d2462d5f0bbcfe403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

namespace OCA\Text\Tests;

use OCA\Text\AppInfo\Application;

class TextTest extends \PHPUnit\Framework\TestCase {
	public function testDummy() {
		$app = new Application();
		$this->assertEquals('text', $app::APP_NAME);
	}
}