Sample test

This commit is contained in:
2018-12-19 21:06:37 +00:00
parent b282d3f851
commit 0976e17030
5 changed files with 75 additions and 31 deletions

21
test/Test.php Normal file
View File

@@ -0,0 +1,21 @@
<?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')
);
}
}