for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EVB\Weather;
use PHPUnit\Framework\TestCase;
/**
* Test ExampleWeather for Weather.
*/
class ExampleWeatherTest extends TestCase
{
* Test getWeather() method.
public function testGetWeather()
$data = "hurr durr";
$sut = new ExampleWeather($data);
$this->assertEquals($data, $sut->getWeather("does not", "matter"));
}