mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2025-05-13 10:34:05 +02:00
52 lines
673 B
PHP
52 lines
673 B
PHP
<?php
|
|
/**
|
|
* ownCloud - 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\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 () {
|
|
|
|
}*/
|
|
|
|
|
|
|
|
}
|