27 lines
504 B
PHP
27 lines
504 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Brian
|
|
* Date: 19/12/2018
|
|
* Time: 21:00
|
|
*/
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
require_once '../src/entryPoint.php';
|
|
|
|
class Test extends TestCase
|
|
{
|
|
public function testShouldNotNULLMessageID0(): void
|
|
{
|
|
$this->assertNotNull(
|
|
reply_user('whatever', 0, 'whatever')
|
|
);
|
|
}
|
|
public function testShouldNULLMessageID1(): void
|
|
{
|
|
$this->assertNull(
|
|
reply_user('whatever', 1, 'whatever')
|
|
);
|
|
}
|
|
}
|