17 lines
368 B
PHP
17 lines
368 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Tests\Functional;
|
||
|
|
|
||
|
|
use \Tests\Support\FunctionalTester;
|
||
|
|
class HomepageLayoutCest
|
||
|
|
{
|
||
|
|
public function testLatihanNumberOne(FunctionalTester $I)
|
||
|
|
{
|
||
|
|
// Mengunjungi halaman yang diuji
|
||
|
|
$I->amOnPage('/phpunit/result-test-student/');
|
||
|
|
|
||
|
|
// Mengecek apakah teks terlihat di halaman
|
||
|
|
$I->see('<?phpecho1;?>');
|
||
|
|
}
|
||
|
|
}
|