mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2025-05-10 01:34:04 +02:00
54 lines
697 B
PHP
54 lines
697 B
PHP
<?php
|
|
/**
|
|
* Nextcloud - News
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
|
* @copyright Bernhard Posselt 2015
|
|
*/
|
|
|
|
namespace OCA\News\Tests\Integration\Db;
|
|
|
|
use OCA\News\Tests\Integration\IntegrationTest;
|
|
|
|
class FolderMapperTest extends IntegrationTest
|
|
{
|
|
|
|
|
|
public function testFind()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
/* TBD
|
|
public function testFindByName () {
|
|
|
|
}
|
|
|
|
|
|
public function testFindAllFromUser () {
|
|
|
|
}
|
|
|
|
|
|
public function testDelete () {
|
|
|
|
}
|
|
|
|
|
|
public function testGetToDelete () {
|
|
|
|
}
|
|
|
|
|
|
public function testDeleteUser () {
|
|
|
|
}*/
|
|
|
|
|
|
|
|
}
|