Longman\TelegramBot\Tests\Unit\WebhookInfoTest::testGetLastErrorMessage PHP Method

testGetLastErrorMessage() public method

Testing getLastErrorMessage
    public function testGetLastErrorMessage()
    {
        $webhook = new WebhookInfo($this->data);
        $error_msg = $webhook->getLastErrorMessage();
        $this->assertInternalType('string', $error_msg, $error_msg);
        $this->assertEquals($this->data['last_error_message'], $error_msg);
    }