tgbotlib/tests/TgBotLib/Methods/GetMeTest.php

38 lines
No EOL
902 B
PHP

<?php
namespace TgBotLib\Methods;
use PHPUnit\Framework\TestCase;
use TgBotLib\Bot;
use TgBotLib\Objects\User;
class GetMeTest extends TestCase
{
private static Bot $bot;
/**
* @return void
*/
public static function setUpBeforeClass(): void
{
self::$bot = new Bot(BOT_TOKEN);
self::$bot->setAutoRetry(true);
}
/**
* Tests the `getMe` function of the bot instance.
*
* @return void
*/
public function testGetMe(): void
{
$result = self::$bot->getMe();
$this->assertInstanceOf(User::class, $result);
$this->assertEquals(7591266486, $result->getId());
$this->assertEquals('Debug Bot', $result->getFirstName());
$this->assertNull($result->getLastName());
$this->assertEquals('PublicDebuggingBot', $result->getUsername());
$this->assertTrue($result->isBot());
}
}