21 lines
404 B
PHP
21 lines
404 B
PHP
<?php
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
require_once '../src/entryPoint.php';
|
|
|
|
class Test extends TestCase
|
|
{
|
|
public function testShouldNotNULLMessageID0(): void
|
|
{
|
|
$this->assertNotNull(
|
|
reply_user(5, 0, 'whatever')
|
|
);
|
|
}
|
|
public function testShouldNULLMessageID1(): void
|
|
{
|
|
$this->assertNull(
|
|
reply_user(5, 1, 'whatever')
|
|
);
|
|
}
|
|
}
|