Initial commit
This commit is contained in:
15
tests/ModelLibPhpTest.php
Normal file
15
tests/ModelLibPhpTest.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
include __DIR__ . '/../vendor/autoload.php';
|
||||
|
||||
use Nwb\ModelLibPhp\ModelLibPhp;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class ModelLibPhpTest extends TestCase
|
||||
{
|
||||
public function testHello()
|
||||
{
|
||||
$modelLibPhp = new ModelLibPhp();
|
||||
$this->assertEquals('Hello World, Composer!', $modelLibPhp->hello());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user