vr-shopxo-source/docker/web/app/test/FooTest.php

16 lines
255 B
PHP
Raw Normal View History

2020-04-25 06:09:21 +00:00
<?php
namespace AppTest\Acme;
use App\Acme\Foo;
use PHPUnit\Framework\TestCase;
class FooTest extends TestCase
{
public function testGetName()
{
$foo = new Foo();
$this->assertEquals($foo->getName(), 'Nginx PHP MySQL');
}
}