for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Containers\Welcome\UI\WEB\Tests\Acceptance;
use App\Ship\Parents\Tests\PhpUnit\TestCase;
/**
* Class WelcomeTest.
*
* @author Mahmoud Zalt <[email protected]>
*/
class WelcomeTest extends TestCase
{
private $page = '/';
public function testDisplayWelcomeView()
$this->visit($this->page)
->see('Hello API');
}