mirror of
https://github.com/friendica/friendica
synced 2025-04-23 03:10:12 +00:00
Move all (inactive) API endpoint specific tests to new structure
This commit is contained in:
parent
5aad46c7fb
commit
6fc2eeaeaf
23 changed files with 1122 additions and 951 deletions
30
tests/src/Module/Api/Twitter/Friendships/IncomingTest.php
Normal file
30
tests/src/Module/Api/Twitter/Friendships/IncomingTest.php
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Test\src\Module\Api\Twitter\Friendships;
|
||||
|
||||
use Friendica\Test\src\Module\Api\ApiTest;
|
||||
|
||||
class IncomingTest extends ApiTest
|
||||
{
|
||||
/**
|
||||
* Test the api_friendships_incoming() function.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiFriendshipsIncoming()
|
||||
{
|
||||
// $result = api_friendships_incoming('json');
|
||||
// self::assertArrayHasKey('id', $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_friendships_incoming() function an undefined cursor GET variable.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiFriendshipsIncomingWithUndefinedCursor()
|
||||
{
|
||||
// $_GET['cursor'] = 'undefined';
|
||||
// self::assertFalse(api_friendships_incoming('json'));
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue