mirror of
https://github.com/yiisoft/app.git
synced 2026-03-15 12:36:51 +01:00
23 lines
394 B
PHP
23 lines
394 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Tests;
|
|
|
|
use App\Tests\AcceptanceTester;
|
|
|
|
class IndexFunctionalCest
|
|
{
|
|
public function _before(FunctionalTester $I)
|
|
{
|
|
$I->wantTo('index page works.');
|
|
$I->amOnPage('/');
|
|
}
|
|
|
|
public function testIndexPage(FunctionalTester $I): void
|
|
{
|
|
$I->expectTo('see page index.');
|
|
$I->see('Hello World');
|
|
}
|
|
}
|