for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bhhaskin\WeatherBee\Tests;
use PHPUnit\Framework\TestCase;
use Bhhaskin\WeatherBee\HelloWorld;
/**
* @covers Bhhaskin\WeatherBee\HelloWorld
*/
final class HelloWorldTest extends TestCase
{
public function testHelloWorld()
$this->expectOutputString('Hello World!');
new HelloWorld();
}