Move all (inactive) API endpoint specific tests to new structure

This commit is contained in:
Philipp 2021-11-27 19:50:52 +01:00
parent 5aad46c7fb
commit 6fc2eeaeaf
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
23 changed files with 1122 additions and 951 deletions

View file

@ -0,0 +1,53 @@
<?php
namespace Friendica\Test\src\Module\Api\Twitter\Friends;
use Friendica\Test\src\Module\Api\ApiTest;
class ListsTest extends ApiTest
{
/**
* Test the api_statuses_f() function.
*
* @return void
*/
public function testApiStatusesFWithFriends()
{
// $_GET['page'] = -1;
// $result = api_statuses_f('friends');
// self::assertArrayHasKey('user', $result);
}
/**
* Test the api_statuses_f() function an undefined cursor GET variable.
*
* @return void
*/
public function testApiStatusesFWithUndefinedCursor()
{
// $_GET['cursor'] = 'undefined';
// self::assertFalse(api_statuses_f('friends'));
}
/**
* Test the api_statuses_friends() function.
*
* @return void
*/
public function testApiStatusesFriends()
{
// $result = api_statuses_friends('json');
// self::assertArrayHasKey('user', $result);
}
/**
* Test the api_statuses_friends() function an undefined cursor GET variable.
*
* @return void
*/
public function testApiStatusesFriendsWithUndefinedCursor()
{
// $_GET['cursor'] = 'undefined';
// self::assertFalse(api_statuses_friends('json'));
}
}