зеркало из https://github.com/nextcloud/activity.git
28 строки
578 B
PHP
28 строки
578 B
PHP
<?php
|
|
|
|
/**
|
|
* ownCloud
|
|
*
|
|
* @author Joas Schilling
|
|
* @copyright 2015 Joas Schilling nickvergessen@owncloud.com
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later.
|
|
* See the COPYING-README file.
|
|
*/
|
|
|
|
namespace OCA\Activity\Tests;
|
|
|
|
/**
|
|
* Class PersonalTest
|
|
*
|
|
* @group DB
|
|
* @package OCA\Activity\Tests
|
|
*/
|
|
class PersonalTest extends TestCase {
|
|
public function testInclude() {
|
|
$settingsPage = include '../personal.php';
|
|
$this->assertNotEmpty(include '../personal.php', 'Asserting that the personal.php does produce output.');
|
|
}
|
|
}
|