2015-02-19 17:05:48 +03:00
|
|
|
<?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;
|
|
|
|
|
2015-12-10 19:17:10 +03:00
|
|
|
/**
|
|
|
|
* Class PersonalTest
|
|
|
|
*
|
|
|
|
* @group DB
|
|
|
|
* @package OCA\Activity\Tests
|
|
|
|
*/
|
2015-02-19 17:05:48 +03:00
|
|
|
class PersonalTest extends TestCase {
|
|
|
|
public function testInclude() {
|
|
|
|
$settingsPage = include '../personal.php';
|
|
|
|
$this->assertNotEmpty(include '../personal.php', 'Asserting that the personal.php does produce output.');
|
|
|
|
}
|
|
|
|
}
|