我已經(jīng)在 java 中設(shè)置了一個(gè)黃瓜項(xiàng)目,在我的 Eclipse IDE 中我可以直接運(yùn)行我的功能文件并且測試將完成。但是,當(dāng)我將它們作為 JUnit 測試運(yùn)行時(shí),它們不會(huì)運(yùn)行,在控制臺(tái)中它們顯示為@When("^user navigates to Login Page$")public void user_navigates_to_Login_Page() throws Throwable { // Write code here that turns the phrase above into concrete actions throw new PendingException();}如果我雙擊 JUnit 選項(xiàng)卡中的步驟,我會(huì)收到以下消息“在選定的項(xiàng)目中找不到測試類”我的測試運(yùn)行類看起來像這樣,package com.bsautoweb.runner;import java.io.File;import org.junit.AfterClass;import org.junit.runner.RunWith;import com.cucumber.listener.Reporter;import cucumber.api.CucumberOptions;import cucumber.api.junit.Cucumber;@RunWith(Cucumber.class)@CucumberOptions(glue = {"src/test/java/com/bsautoweb/stepdefinitions"}, features = {"src/test/resources/features/"},plugin = "com.cucumber.listener.ExtentCucumberFormatter:target/cucumber-reports/report.html",monochrome = true)public class Testrunner { @AfterClass public static void writeExtentReport() { Reporter.loadXMLConfig(new File("config/report.xml")); }}我的文件夾結(jié)構(gòu)如下所示JUnit 似乎忽略了我的粘合代碼。即使我輸入無效路徑,它也不會(huì)抱怨。
Cucumber JUnit 測試未將功能粘合到步驟定義
30秒到達(dá)戰(zhàn)場
2023-07-13 15:50:25