Files
tg-bot/test/Test.php
2018-12-19 21:06:37 +00:00

22 lines
360 B
PHP

<?php
/**
* Created by PhpStorm.
* User: Brian
* Date: 19/12/2018
* Time: 21:00
*/
use PHPUnit\Framework\TestCase;
require '../src/entryPoint.php';
class Test extends TestCase
{
public function testShouldReturnMessageID(): void
{
$this->assertEquals(
'0',
reply_user('whatever', 0, 'whatever')
);
}
}