kopia lustrzana https://github.com/nextcloud/social
19 wiersze
364 B
PHP
19 wiersze
364 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Social\Tests;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class SocialTest extends TestCase {
|
|
public function testDummy() {
|
|
/**
|
|
* Dummy test to check if phpunit is working properly
|
|
*/
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|