0
我試圖運行黃瓜測試,但我收到以下異常。我用這些器皿裏的版本運行Cucumber Junit測試時出錯:Intializationerror
這是我的項目:
這是的TestRunner類代碼:
package cucumberTest;
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
@RunWith(Cucumber.class)
@CucumberOptions(
features = "Feature"
,glue={"stepDefinition"}
)
public class TestRunner {
}
在logIn.feature file:
功能:登錄操作測試
情景:成功登錄使用有效憑據 給定用戶在主頁上 當用戶瀏覽到登錄頁面 和用戶輸入用戶名和密碼 然後消息顯示登錄成功
方案:成功的註銷 當從應用 用戶退出然後消息顯示註銷成功