2019-03-06 09:50:21 +00:00
|
|
|
<?php
|
2024-09-08 13:46:22 +00:00
|
|
|
/**
|
|
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
*/
|
2022-04-15 11:34:01 +00:00
|
|
|
|
2019-03-06 09:50:21 +00:00
|
|
|
namespace OCA\Social\Tests;
|
|
|
|
|
2022-04-15 11:01:18 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2019-03-06 09:50:21 +00:00
|
|
|
|
2022-04-15 11:01:18 +00:00
|
|
|
class SocialTest extends TestCase {
|
2019-03-06 09:50:21 +00:00
|
|
|
public function testDummy() {
|
|
|
|
/**
|
|
|
|
* Dummy test to check if phpunit is working properly
|
|
|
|
*/
|
|
|
|
$this->assertTrue(true);
|
|
|
|
}
|
2020-06-25 14:02:58 +00:00
|
|
|
}
|