multi-downloader-client/tests/ModelLibPhpTest.php
modules-communs-php 93b0fa25b2 Initial commit
2024-01-11 10:04:42 +00:00

16 lines
326 B
PHP

<?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());
}
}