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

testGetLastErrorDate() public method

Testing getLastErrorDate
    public function testGetLastErrorDate()
    {
        $webhook = new WebhookInfo($this->data);
        $error_date = $webhook->getLastErrorDate();
        $this->assertInternalType('int', $error_date);
        #$this->assertRegExp('/([0-9]{10,})/', $error_date);
        $this->assertEquals($this->data['last_error_date'], $error_date);
    }