for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GuillermoandraeTest;
use Guillermoandrae\HelloWorld;
use PHPUnit\Framework\TestCase;
final class HelloWorldTest extends TestCase
{
public function testHello()
$this->assertSame('Hello, World!', (new HelloWorld())->hello());
}