0
爲什麼我在使用PHPUnit + Selenium Server以不存在的電子郵件和密碼登錄時沒有收到錯誤消息? 這是PHPUnit腳本。塞巴斯蒂安伯格曼PHPUnit的ExampleTest.php PHPUnit的3.6.12:爲什麼我在使用PHPUnit + Selenium Server時沒有收到錯誤?
public function testUserNotExists() {
$this->open('https://dev.example.com/login');
$this->type("id=email", "[email protected]");
$this->type("id=password", "1d0n73x1s7");
$this->click("name=login_user");
}
當我運行它,它不會顯示錯誤
終端。
E. ..
時間:29秒,內存:4.75MB
有1個錯誤:
1)沒有定義ExampleTest :: testTitle
方法assertTitleEquals。
失敗! 測試:4,斷言:1,錯誤:1.
謝謝,我試圖弄清楚爲什麼它不會顯示幾個小時的錯誤。 – yan