Aşağıda bu test sınıfım var ve ondan yalnızca bir test çalıştırmak istiyorum, örneğin "aboutPage". Nasıl bir fikriniz var?
Sadece bu dosyayı şu şekilde çalıştırıyorum:
codecept run tests/acceptance/VisitorCest.php
Ama şimdi dosyadan yalnızca bir test çalıştırmak istiyorum.
<?php
use \AcceptanceTester;
class VisitorCest
{
public function _before(){}
public function _after(){}
public function aboutPage(AcceptanceTester $I)
{
$I->wantTo('check about page');
}
public function contactPage(AcceptanceTester $I)
{
$I->wantTo('check contact page');
}
}