E2E\TestCase::waitForUserInput PHP 메소드

waitForUserInput() 보호된 메소드

Wait for the user to press ENTER key before continuing.
protected waitForUserInput ( )
    protected function waitForUserInput()
    {
        if (trim(fgets(fopen('php://stdin', 'rb'))) !== chr(13)) {
            return;
        }
    }