mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-08 21:44:26 +02: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
31
tests/src/Module/Api/Twitter/Users/LookupTest.php
Normal file
31
tests/src/Module/Api/Twitter/Users/LookupTest.php
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Test\src\Module\Api\Twitter\Users;
|
||||
|
||||
use Friendica\Test\src\Module\Api\ApiTest;
|
||||
|
||||
class LookupTest extends ApiTest
|
||||
{
|
||||
/**
|
||||
* Test the api_users_lookup() function.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiUsersLookup()
|
||||
{
|
||||
// $this->expectException(\Friendica\Network\HTTPException\NotFoundException::class);
|
||||
// api_users_lookup('json');
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_users_lookup() function with an user ID.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiUsersLookupWithUserId()
|
||||
{
|
||||
// $_REQUEST['user_id'] = $this->otherUser['id'];
|
||||
// $result = api_users_lookup('json');
|
||||
// self::assertOtherUser($result['users'][0]);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue