Initial commit

This commit is contained in:
modules-communs-php
2024-01-11 10:04:42 +00:00
commit 93b0fa25b2
10 changed files with 1882 additions and 0 deletions

15
tests/ModelLibPhpTest.php Normal file
View 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());
}
}